summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 0a70c2b)
raw | patch | inline | side by side (parent: 0a70c2b)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 18 Mar 2008 13:05:57 +0000 (13:05 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 18 Mar 2008 13:05:57 +0000 (13:05 +0000) |
-Some functions were not static.
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9922 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9922 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/utils/class_msgPool.inc | patch | blob | history |
index 748563fd54eba34722f5c25fce2d21b3fa4e8e4d..e0957942bd52fda4622b66b2dad7eb34363d3df8 100644 (file)
}
- function incorrectUpload($reason= "")
+ public static function incorrectUpload($reason= "")
{
if ($reason == ""){
return _("Upload failed!");
}
- function siError($error= "")
+ public static function siError($error= "")
{
if ($error == ""){
return _("Communication failure with the infrastructure service!");
}
- function stillInUse($type, $objects= array())
+ public static function stillInUse($type, $objects= array())
{
if (!is_array($objects)){
return sprintf(_("This '%s' is still in use by this object: %s"), $type, "<br><br>".$objects);
}
- function fileDoesNotExist($file)
+ public static function fileDoesNotExist($file)
{
return sprintf(_("File '%s' does not exist!"), $file);
}
- function cannotReadFile($file)
+ public static function cannotReadFile($file)
{
return sprintf(_("Cannot open file '%s' for reading!"), $file);
}
- function cannotWriteFile($file)
+ public static function cannotWriteFile($file)
{
return sprintf(_("Cannot open file '%s' for writing!"), $file);
}
- function cannotDeleteFile($file)
+ public static function cannotDeleteFile($file)
{
return sprintf(_("Cannot delete file '%s'!"), $file);
}
- function cannotCreateFolder($path)
+ public static function cannotCreateFolder($path)
{
return sprintf(_("Cannot create folder '%s'!"), $path);
}
- function cannotDeleteFolder($path)
+ public static function cannotDeleteFolder($path)
{
return sprintf(_("Cannot delete folder '%s'!"), $path);
}
- function chooseToPlaceObjectIn($what)
+ public static function chooseToPlaceObjectIn($what)
{
return sprintf(_("Choose subtree to place %s in"), $what);
}
- function checkingFor($what)
+ public static function checkingFor($what)
{
return sprintf(_("Checking for %s support"), $what);
}