X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-core%2Fplugins%2Faddons%2Fldapmanager%2Fclass_ldif.inc;fp=gosa-core%2Fplugins%2Faddons%2Fldapmanager%2Fclass_ldif.inc;h=3451f8179d92351d370482b1e632881075fa3f4a;hb=7f7f21906eb6121c29823abbf96461733d642509;hp=0000000000000000000000000000000000000000;hpb=47d9abbc98056723fcde3131a70713d6fd075d8d;p=gosa.git diff --git a/gosa-core/plugins/addons/ldapmanager/class_ldif.inc b/gosa-core/plugins/addons/ldapmanager/class_ldif.inc new file mode 100644 index 000000000..3451f8179 --- /dev/null +++ b/gosa-core/plugins/addons/ldapmanager/class_ldif.inc @@ -0,0 +1,52 @@ +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" => "Dummy entry for menu creation functions, later", + "plSelfModify" => FALSE, + "plDepends" => array(), + "plPriority" => 1, + "plSection" => array("addon"), + "plCategory" => array("ldapmanager" => array("objectClass" => "none", "description" => _("Ldap manager addon"))), + + "plProvidedAcls" => array() + )); + } + + + +} + + +// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: +?>