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);