Code

Update
[gosa.git] / plugins / admin / acl / class_acl.inc
1 <?php
3 class acl extends plugin
4 {
5   /* Definitions */
6   var $plHeadline= "Access control";
7   var $plDescription= "This does something";
9   /* attribute list for save action */
10   var $attributes= array("target", "nmessage");
11   var $objectclasses= array();
14   function acl ($config, $dn= NULL)
15   {
16     /* Include config object */
17     $this->config= $config;
18   }
21   function execute()
22   {
23     /* Call parent execute */
24     plugin::execute();
26     $smarty= get_smarty();
28     /* Show main page */
29     return ($smarty->fetch (get_template_path('contents.tpl', TRUE)));
30   }
32 }
34 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
35 ?>