Code

819cee44aa57150d33d6868f5ffa64d581551b09
[gosa.git] / plugins / personal / environment / class_logonManagementDialog.inc
1 <?php
2 class logonManagementDialog extends plugin
3 {
4   /* CLI vars */
5   var $cli_summary          = "Manage server basic objects";
6   var $cli_description      = "Some longer text\nfor help";
7   var $cli_parameters       = array("eins" => "Eins ist toll", "zwei" => "Zwei ist noch besser");
9   /* attribute list for save action */
10   var $ignore_account       = TRUE;
11   var $attributes           = array();
12   var $objectclasses        = array("whatever");
13   var $use_existing         = false;  
15   var $baseDir              = "../kioskProfiles/";
16   var $filePrefix           = ".kioskProfile";
18   function logonManagementDialog ($config, $dn= NULL,$use_existing=false )
19   {
20     $this->use_existing = $use_existing;
21     plugin::plugin ($config, $dn);
22   }
24   function execute()
25   {
26     $smarty= get_smarty();
27     $display= "";
28     $display.= $smarty->fetch(get_template_path('logonManagement.tpl', TRUE,dirname(__FILE__)));
29     return($display);
30   }
32 }
33 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
34 ?>