X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=plugins%2Fadmin%2Fsystems%2Fclass_servNfs.inc;h=9f6a3e93d211a23bd1d48f815c3ec16ea6a064fc;hb=c30fdf675865a86365275ed6fb9f8a0cc06e41af;hp=043813d5e93b264215a78f5fdb7e995ee4db5edb;hpb=7f51b7c557fe5fb3c73b5bde15856fbfdb08efbb;p=gosa.git diff --git a/plugins/admin/systems/class_servNfs.inc b/plugins/admin/systems/class_servNfs.inc index 043813d5e..9f6a3e93d 100644 --- a/plugins/admin/systems/class_servNfs.inc +++ b/plugins/admin/systems/class_servNfs.inc @@ -2,11 +2,6 @@ class servnfs extends plugin { - /* CLI vars */ - var $cli_summary = "Manage server objects"; - var $cli_description = "Some longer text\nfor help"; - var $cli_parameters = array("eins" => "Eins ist toll", "zwei" => "Zwei ist noch besser"); - /* attribute list for save action */ var $ignore_account = TRUE; var $attributes = array("description","type","charset","path","option", "volume"); @@ -42,13 +37,13 @@ class servnfs extends plugin $this->charsets = array(); - if(!file_exists("/etc/gosa/encodings")){ - print_red(_("The file '/etc/gosa/encodings' does not exist, can't get supported charsets.")); + if(!file_exists(CONFIG_DIR."/encodings")){ + print_red(sprintf(_("The file '%s/encodings' does not exist, can't get supported charsets."),CONFIG_DIR)); }else{ - if(!is_readable("/etc/gosa/encodings")){ - print_red(_("Can't read '/etc/gosa/encodings', please check permissions.")); + if(!is_readable(CONFIG_DIR."/encodings")){ + print_red(sprintf(_("Can't read '%s/encodings', please check permissions."),CONFIG_DIR)); }else{ - $fp = fopen("/etc/gosa/encodings","r"); + $fp = fopen(CONFIG_DIR."/encodings","r"); $i = 100; while(!feof($fp)&&$i){ $i -- ; @@ -190,11 +185,11 @@ class servnfs extends plugin } } - if(preg_match("/[^a-z0-9._+ -]+/i",$this->description)){ + if(preg_match("/[^a-z0-9\._+ -]+/i",$this->description)){ $message[]=_("Description contains invalid characters."); } - if(preg_match("/[^a-z0-9._+ -]/i",$this->volume)){ + if(preg_match("/[^a-z0-9\._+ -]/i",$this->volume)){ $message[]=_("Volume contains invalid characters."); }