summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7d00ca1)
raw | patch | inline | side by side (parent: 7d00ca1)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 18 Jul 2006 07:18:10 +0000 (07:18 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 18 Jul 2006 07:18:10 +0000 (07:18 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4193 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/admin/systems/class_componentGeneric.inc | patch | blob | history |
diff --git a/plugins/admin/systems/class_componentGeneric.inc b/plugins/admin/systems/class_componentGeneric.inc
index 8648d0bc40cb3b3cd0e11d2c476e3ff2acd3b8db..a6d93bb19da55c382f71a951f75871186f52e5c4 100644 (file)
$this->postcreate();
}
+ /* Return plugin informations for acl handling */
+ function plInfo()
+ {
+ return (array(
+ "plShortName" => _("Generic"),
+ "plDescription" => _("Component generic"),
+ "plSelfModify" => FALSE,
+ "plDepends" => array(),
+ "plPriority" => 0,
+ "plSection" => array("administration"),
+ "plCategory" => array("component" => array("description" => _("Network device"),
+ "objectClass" => array("device", "ipHost", "ieee802Device"))),
+ "plProvidedAcls"=> array(
+ "cn" => _("Name"),
+ "description" => _("Description"))
+ ));
+ }
+
+
}
// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: