summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d8274c8)
raw | patch | inline | side by side (parent: d8274c8)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 23 Jul 2010 09:34:47 +0000 (09:34 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 23 Jul 2010 09:34:47 +0000 (09:34 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19082 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/ldapmanager/addons/ldapmanager/class_ldif.inc | patch | blob | history |
diff --git a/gosa-plugins/ldapmanager/addons/ldapmanager/class_ldif.inc b/gosa-plugins/ldapmanager/addons/ldapmanager/class_ldif.inc
index d2f6461381e696e4092ba25bc616eec14867408c..e783915953187fbfb5c33718f8abaa55040d31eb 100644 (file)
class ldif extends plugin
{
- /* Definitions */
- var $plHeadline= "LDAP tools";
- var $plDescription= "Export LDIF or Excel snapshots of the LDAP tree";
- var $plIcon = "plugins/ldapmanager/images/ldif.png";
-
- /* attribute list for save action */
- var $attributes= array();
- var $objectclasses= array();
- var $ldif;
-
- function ldif (&$config)
- {
- /* Include config object */
- $this->ldif= new ldiftab($config, $config->data['TABS']['LDIFTAB'], "");
- }
-
- function execute()
- {
- /* Call parent execute */
- plugin::execute();
-
- /* Show main page */
- return ($this->ldif->execute());
- }
-
- /* Return plugin informations for acl handling
- #FIXME You can only read attributes within this report plugin */
- static function plInfo()
- {
- return (array(
- "plShortName" => _("LDAP manager"),
- "plDescription" => _("LDAP manager")." ("._("import")."/"._("export").")",
- "plSelfModify" => FALSE,
- "plDepends" => array(),
- "plPriority" => 1,
- "plSection" => array("addon"),
- "plCategory" => array("ldapmanager" => array("description" => _("LDAP manager"))),
-
- "plProvidedAcls" => array()
- ));
- }
+ /* Definitions */
+ var $plHeadline= "LDAP tools";
+ var $plDescription= "Export LDIF or Excel snapshots of the LDAP tree";
+ var $plIcon = "plugins/ldapmanager/images/ldif.png";
+
+ /* attribute list for save action */
+ var $attributes= array();
+ var $objectclasses= array();
+ var $ldif;
+
+ function ldif (&$config)
+ {
+ /* Include config object */
+ $this->ldif= new ldiftab($config, $config->data['TABS']['LDIFTAB'], "");
+ }
+
+ function execute()
+ {
+ /* Call parent execute */
+ plugin::execute();
+
+ /* Show main page */
+ return ($this->ldif->execute());
+ }
+
+ /* Return plugin informations for acl handling
+#FIXME You can only read attributes within this report plugin */
+ static function plInfo()
+ {
+ return (array(
+ "plShortName" => _("LDAP manager"),
+ "plDescription" => _("LDAP manager")." ("._("import")."/"._("export").")",
+ "plSelfModify" => FALSE,
+ "plDepends" => array(),
+ "plPriority" => 1,
+ "plSection" => array("addon"),
+ "plCategory" => array("ldapmanager" => array("description" => _("LDAP manager"))),
+
+ "plProvidedAcls" => array()
+ ));
+ }