File: class_ldif.inc

package info (click to toggle)
gosa-plugins-ldapmanager 2.8~git20211022.877a67e-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 396 kB
  • sloc: php: 1,055; makefile: 5
file content (61 lines) | stat: -rw-r--r-- 1,748 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php

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";
    var $matIcon = "account_tree_outlined";

    /* attribute list for save action */
    var $attributes= array();
    var $objectclasses= array();
    var $ldif;

    function __construct(&$config)
    {
        $this->initTime = microtime(TRUE);

        stats::log('plugin', $class = get_class($this), $category = array($this->acl_category),  $action = 'open',
                $amount = 1, $duration = (microtime(TRUE) - $this->initTime));


        /* 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")."&nbsp;("._("import")."/"._("export").")",
                    "plSelfModify"  => FALSE,
                    "plDepends"     => array(),
                    "plPriority"    => 1,
                    "plSection"     => array("addon"),
                    "plCategory"    => array("ldapmanager" => array("description" => _("LDAP manager"))),

                    "plProvidedAcls" => array()
                    ));
    }



}


// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
?>