Code

Added additional acls to department generic
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 14 Jul 2006 06:15:25 +0000 (06:15 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 14 Jul 2006 06:15:25 +0000 (06:15 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4146 594d385d-05f5-0310-b6e9-bd551577e9d8

plugins/admin/departments/class_departmentGeneric.inc

index 525e9d2457fd5a2da41bc832b9675cfe72b052fc..6e1f962f160ca60f386ef79acfc0074f90339dcc 100644 (file)
@@ -522,19 +522,23 @@ class department extends plugin
        }
 
 
+  /* Return plugin informations for acl handling */ 
   function plInfo()
   {
-    return (array("plDescription" => _("Departments"),
-                  "plSelfModify" => FALSE,
-                  "plDepends" => array("objectClass" => "gosaDepartment", "description" => _("Departments")),
-                  "description" => _("Description"),
-                  "c" => _("Country"),
-                  "l" => _("Location"),
-                  "telephoneNumber" => _("Telephone"),
-                  "ou" => _("Department name") ));
+    return (array("plDescription"     => _("Departments"),
+                  "plSelfModify"      => FALSE,
+                  "plDepends"         => array("objectClass" => "gosaDepartment", "description" => _("Departments")),
+                  "description"       => _("Description"),
+                  "c"                 => _("Country"),
+                  "l"                 => _("Location"),
+                  "telephoneNumber"   => _("Telephone"),
+                  "ou"                => _("Department name"),
+                  "businessCategory"  => _("Category"),
+                  "st"                => _("State"),
+                  "postalAddress"     => _("Address"),
+                  "gosaUnitTag"       => _("Administrative settings"),
+                  "facsimileTelephoneNumber" => _("Fax")));
   }
-
-
 }
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
 ?>