Code

Added some acls
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 12 Jul 2006 08:47:33 +0000 (08:47 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 12 Jul 2006 08:47:33 +0000 (08:47 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4116 594d385d-05f5-0310-b6e9-bd551577e9d8

plugins/personal/environment/class_environment.inc
plugins/personal/posix/class_posixAccount.inc

index f2871d89c29d012e5f1f943d8159084461790e9c..f5357a4d6988975a9aeb8a862f1cef974ef0d148 100644 (file)
@@ -1243,10 +1243,28 @@ function printOutHotPlugDevices()
     }
     return($a_return);
   }
-}
 
 
+  function plInfo()
+  {
+    return (array("plDescription"   => _("Environment settings"),
+                  "plSelfModify"    => TRUE,
+                  "plDepends"       => array("objectClass" => "gotoEnvironment"),
+
+                  "gotoProfileServer"   => _("Profile server") ,
+                  "gotoProfileFlag_L"   => "FIXME"._("Resolution changeable during session") ,  // These variable are flags 
+                  "gotoProfileFlag_C"   => "FIXME"._("Cache profile localy") ,                  // extracted from gotoProfileFlag
+                  "gotoXResolution"     => _("Resolution") ,
+                  "gotoProfileQuota"    => _("Profile quota") ,
+                  "gotoLogonScripts"    => _("Logon script") ,
+                  "gotoPrinter"         => _("Printer") ,
+                  "gosaDefaultPrinter"  => _("Default printer") ,
+                  "gotoKioskProfile"    => _("Kiosk profile") ,
+                  "gotoShare"           => _("Shares") ));
+    }
+}
 
+  
 
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
 ?>
index 2062f47faa44ad96ef3a267c9589c9322d99e68d..35750a0e79eb2ba90b6f5aec11e83d95b9b2fb3c 100644 (file)
@@ -1217,13 +1217,30 @@ class posixAccount extends plugin
   function plInfo()
   {
     return (array("plDescription" => _("POSIX account"),
-                  "plSelfModify" => TRUE,
-                  "plDepends" => array("objectClass" => "gosaAccount"),
-                  "homeDirectory" => _("Home directory"), "uidNumber" => _("User ID"),
-                  "gidNumber" => _("Group ID")));
+          "plSelfModify" => TRUE,
+          "plDepends" => array("objectClass" => "gosaAccount"),
+
+          "homeDirectory"       =>  _("Home directory"), 
+          "uidNumber"           =>  _("User ID"),
+          "gidNumber"           =>  _("Group ID"),
+          "homeDirectory"       =>  _("Home directory"),
+          "primaryGroup"        =>  _("Primary group"),
+
+          "loginShell"          =>  _("Shell"),
+//          "gecos"               =>  _(""),
+
+          "shadowMin"           =>  _("Shadow min"),
+          "shadowMax"           =>  _("Shadow max"),
+          "shadowWarning"       =>  _("Shadow warning"),
+          "shadowInactive"      =>  _("Shadow inactive"),
+          "shadowLastChange"    =>  _("Shadow last change"),
+
+          "shadowExpire"        =>  _("Shadow expire"),
+          //"gosaDefaultPrinter"  =>  _(""),
+          //"gosaDefaultLanguage" =>  _(""), 
+          "accessTo"            =>  _("System trust"),
+          "trustModel"          =>  _("System trust modell"))) ;
   }
-
-
 }
 
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: