Code

Moved to trunk/branches/tags structure
[gosa.git] / plugins / addons / ldapmanager / class_ldif.inc
1 <?php
2 require_once("tabs_ldif.inc");
4 class ldif extends plugin
5 {
6   /* Definitions */
7   var $plHeadline= "LDAP manager";
8   var $plDescription= "This does something";
10   /* attribute list for save action */
11   var $attributes= array();
12   var $objectclasses= array();
13   var $ldif;
15   function ldif ($config)
16   {
17     /* Include config object */
18     $this->ldif= new ldiftab($config, $config->data['TABS']['LDIFTAB'], "");
19   }
21   function execute()
22   {
23     /* Show main page */
24     return ($this->ldif->execute());
25   }
27 }
30 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
31 ?>