summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 2c259b0)
raw | patch | inline | side by side (parent: 2c259b0)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 12 Jul 2006 08:47:33 +0000 (08:47 +0000) | ||
committer | hickert <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 | patch | blob | history | |
plugins/personal/posix/class_posixAccount.inc | patch | blob | history |
diff --git a/plugins/personal/environment/class_environment.inc b/plugins/personal/environment/class_environment.inc
index f2871d89c29d012e5f1f943d8159084461790e9c..f5357a4d6988975a9aeb8a862f1cef974ef0d148 100644 (file)
}
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:
?>
diff --git a/plugins/personal/posix/class_posixAccount.inc b/plugins/personal/posix/class_posixAccount.inc
index 2062f47faa44ad96ef3a267c9589c9322d99e68d..35750a0e79eb2ba90b6f5aec11e83d95b9b2fb3c 100644 (file)
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: