An error occurred while loading the file. Please try again.
-
Matthew Newton authored786d86e8
<?php
/*
This code is part of FusionDirectory (http://www.fusiondirectory.org/)
Copyright (C) 2003-2010 Cajus Pollmeier
Copyright (C) 2011-2020 FusionDirectory
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/*!
* \file class_msgPool.inc
* Source code for class msgPool
*/
/*!
* \brief This class contains all the messages for the various actions
*/
class msgPool
{
/*!
* \brief Display that we have no permission to delete an object
*
* \param string $name Name of the object which will be deleted
*/
public static function permDelete ($name = '')
{
if ($name == '') {
return htmlescape(_('You have no permission to delete this object!'));
}
if (!is_array($name)) {
return htmlescape(_('You have no permission to delete the object:'))."<br/><br/><i>$name</i>";
}
if (count($name) == 1) {
return htmlescape(_('You have no permission to delete the object:')).'<br/>'.msgPool::buildList($name);
}
return htmlescape(_('You have no permission to delete these objects:')).'<br/>'.msgPool::buildList($name);
}
/*!
* \brief Display that we have no permission to create an object
*
* \param string $name Name of the object which will be created
*/
public static function permCreate ($name = '')
{
if ($name == '') {
return htmlescape(_('You have no permission to create this object!'));
}
if (!is_array($name)) {
return htmlescape(_('You have no permission to create the object:')).'<br/><br/><i>'.htmlescape($name).'</i>';
}
if (count($name) == 1) {
return htmlescape(_('You have no permission to create the object:')).'<br/>'.msgPool::buildList($name);
7172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
}
return htmlescape(_('You have no permission to create these objects:')).'<br/>'.msgPool::buildList($name);
}
/*!
* \brief Display that we have no permission to modify an object
*
* \param string $name Name of the object which cannot be modified (or array of objects names)
* \param string $field Name of the field of the object which cannot be modified
*/
public static function permModify ($name = '', $field = '')
{
if ($name == '') {
return htmlescape(_('You have no permission to modify this object!'));
}
if (!is_array($name)) {
if ($field != '') {
return htmlescape(sprintf(_('You have no permission to modify the field "%s" of object "%s"'), $field, $name));
} else {
return sprintf(htmlescape(_('You have no permission to modify the object:%s')), '<br/><br/><i>'.htmlescape($name).'</i>');
}
}
if (count($name) == 1) {
return sprintf(htmlescape(_('You have no permission to modify the object:%s')), '<br/>'.msgPool::buildList($name));
}
return sprintf(htmlescape(_('You have no permission to modify these objects:%s')), '<br/>'.msgPool::buildList($name));
}
/*!
* \brief Display that we have no permission to view an object
*
* \param string $name Name of the object which will be viewed
*/
public static function permView ($name = '')
{
if ($name == '') {
return htmlescape(_('You have no permission to view this object!'));
}
if (!is_array($name)) {
return htmlescape(_('You have no permission to view the object:'))."<br/><br/><i>".htmlescape($name)."</i>";
}
if (count($name) == 1) {
return htmlescape(_('You have no permission to view the object:')).'<br/>'.msgPool::buildList($name);
}
return htmlescape(_('You have no permission to view these objects:')).'<br/>'.msgPool::buildList($name);
}
/*!
* \brief Display that we have no permission to move an object
*
* \param string $name Name of the object which will be moved
*/
public static function permMove ($name = '')
{
if ($name == '') {
return htmlescape(_('You have no permission to move this object!'));
}
if (!is_array($name)) {
return htmlescape(_('You have no permission to move the object:'))."<br/><br/><i>".htmlescape($name)."</i>";
}
if (count($name) == 1) {
141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
return htmlescape(_('You have no permission to move the object:')).'<br/>'.msgPool::buildList($name);
}
return htmlescape(_('You have no permission to move these objects:')).'<br/>'.msgPool::buildList($name);
}
/*!
* \brief Display field contains reserved keyword
*
* \param string $name The field which contains reserved keyword
*/
public static function reserved ($name)
{
return htmlescape(sprintf(_('The field "%s" contains a reserved keyword!'), $name));
}
/*!
* \brief Display that a command execution failed in this plugin
*
* \param string $type Command type
*
* \param string $command Command name
*
* \param string $plugin Name of the plugin
*/
public static function cmdexecfailed ($type, $command = '', $plugin = '')
{
if ($command == '') {
if ($plugin == '') {
return htmlescape(sprintf(_('Cannot execute "%s" command!'), $type));
} else {
return htmlescape(sprintf(_('Cannot execute "%s" command for plugin %s!'), $type, $plugin));
}
} else {
if ($plugin == '') {
return htmlescape(sprintf(_('Cannot execute "%s" command (%s)!'), $type, $command));
} else {
return htmlescape(sprintf(_('Cannot execute "%s" command (%s) for plugin %s!'), $type, $command, $plugin));
}
}
}
/*!
* \brief Display error about too larged value
*
* \param string $name Name of the value
*
* \param string $min The largest value
*/
public static function toobig ($name, $min = '')
{
if ($min == '') {
return htmlescape(sprintf(_('Value for "%s" is too large!'), $name));
} else {
return htmlescape(sprintf(_('"%s" must be smaller than %s!'), $name, $min));
}
}
/*!
* \brief Display error about too small value
*
* \param string $name Name of the value
*
* \param string $min The smallest value
*/
public static function toosmall ($name, $min = '')
{
if ($min == '') {
return htmlescape(sprintf(_('Value for "%s" is too small!'), $name));
} else {