summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: c06ef37)
raw | patch | inline | side by side (parent: c06ef37)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 23 Aug 2005 11:35:44 +0000 (11:35 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 23 Aug 2005 11:35:44 +0000 (11:35 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@1209 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/admin/systems/class_servNfs.inc | patch | blob | history |
index 78429e35b1957da9735565c9671e73126fa1e6c7..95957ecc554abb8ae838a8128c89ef37cf3313a1 100644 (file)
plugin::plugin ($config, $dn);
$this->types = array("NFS"=>"NFS","samba"=>"samba","NCP"=>"NCP");
$this->charsets = array("UTF-8" => "UTF-8",
- "ISO8859-1"=>"ISO8859-1 (Latin 1)",
- "ISO8859-2"=>"ISO8859-2 (Latin 2)",
- "ISO8859-3"=>"ISO8859-3 (Latin 3)",
- "ISO8859-4"=>"ISO8859-4 (Latin 4)",
- "ISO8859-5"=>"ISO8859-5 (Latin 5)");
+ "ISO8859-1"=>"ISO8859-1 (Latin 1)",
+ "ISO8859-2"=>"ISO8859-2 (Latin 2)",
+ "ISO8859-3"=>"ISO8859-3 (Latin 3)",
+ "ISO8859-4"=>"ISO8859-4 (Latin 4)",
+ "ISO8859-5"=>"ISO8859-5 (Latin 5)");
if($entry){
$tmp = split("\|",$entry);
$this->option = $tmp[5]; // Options
$this->is_edit = true;
}else{
- $this->attributes[] = "name";
+ $this->attributes[] = "name";
}
}
foreach($this->attributes as $attr){
$smarty->assign($attr,$this->$attr);
}
-
+
$smarty->assign("nameACL","");
+ $smarty->assign("name",$this->name);
if($this->is_edit){
$smarty->assign("nameACL"," disabled ");
- $smarty->assign("name","");
}
$display= $smarty->fetch(get_template_path('servnfs.tpl', TRUE));
if(empty($this->path)){
$message[]=_("Please specify a valid path for your setup.");
}
-
+
// only 0-9a-z
if(!$this->is_edit){
if(preg_match("/[^a-z0-9]/i",$this->name)){
{
/* Everything seems perfect, lets
generate an new export Entry
- */
-
+ */
+
$s_return = "";
-
+
$s_return.= $this->name."|";
$s_return.= $this->description."|";
$s_return.= $this->type."|";