An error occurred while loading the file. Please try again.
-
dockx thibault authored
Fixing codestyle
Verified46b03343
<?php
/*
This code is part of FusionDirectory (http://www.fusiondirectory.org/)
Copyright (C) 2003-2010 Cajus Pollmeier
Copyright (C) 2011-2018 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
*/
define ("LDAP_READ", 1);
define ("LDAP_ADD", 2);
define ("LDAP_MOD", 3);
define ("LDAP_DEL", 4);
define ("LDAP_SEARCH", 5);
define ("LDAP_AUTH", 6);
/*!
* \brief This class contains all the messages for the various actions
*/
class msgPool {
public static function selectToView($type, $o_type = "")
{
if ($o_type == "") {
return sprintf(_("Select to list objects of type '%s'."), $type);
} elseif ($o_type == "contains") {
return sprintf(_("Select to list objects containig '%s'."), $type);
} elseif ($o_type == "enabled") {
return sprintf(_("Select to list objects that have '%s' enabled"), $type);
} elseif ($o_type == "subsearch") {
return _("Select to search within subtrees");
} elseif ($o_type == "subsearch_small") {
return _("Search in subtrees");
}
}
/*!
* \brief Display the deleted informations
*
* \param string $name Name of the object which will be deleted
*
* \param string $type Type of the object which will be deleted
*/
public static function deleteInfo($name = "", $type = "")
{
if ($name == "") {
if ($type == "") {
return _("This object will be deleted!");
} else {
return sprintf(_("This '%s' object will be deleted!"), $type);
}