From 934841d847b522129f3d6bb83e155134de2a7569 Mon Sep 17 00:00:00 2001 From: hickert Date: Wed, 12 Jul 2006 08:47:33 +0000 Subject: [PATCH] Added some acls git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4116 594d385d-05f5-0310-b6e9-bd551577e9d8 --- .../environment/class_environment.inc | 20 ++++++++++++- plugins/personal/posix/class_posixAccount.inc | 29 +++++++++++++++---- 2 files changed, 42 insertions(+), 7 deletions(-) diff --git a/plugins/personal/environment/class_environment.inc b/plugins/personal/environment/class_environment.inc index f2871d89c..f5357a4d6 100644 --- a/plugins/personal/environment/class_environment.inc +++ b/plugins/personal/environment/class_environment.inc @@ -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: ?> diff --git a/plugins/personal/posix/class_posixAccount.inc b/plugins/personal/posix/class_posixAccount.inc index 2062f47fa..35750a0e7 100644 --- a/plugins/personal/posix/class_posixAccount.inc +++ b/plugins/personal/posix/class_posixAccount.inc @@ -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: -- 2.30.2