Code

Removed base64_encoding, from all classes
[gosa.git] / plugins / admin / fai / class_faiPackageConfiguration.inc
1 <?php
3 class faiPackageConfiguration extends plugin
4 {
5   /* CLI vars */
6   var $cli_summary        = "Manage server basic objects";
7   var $cli_description    = "Some longer text\nfor help";
8   var $cli_parameters     = array("eins" => "Eins ist toll", "zwei" => "Zwei ist noch besser");
10   /* attribute list for save action */
11   var $ignore_account = TRUE;
12   var $attributes     = array();
13   var $objectclasses  = array();
15   var $obj;
17   function faiPackageConfiguration ($config, $dn= NULL,$obj)
18   {
19     plugin::plugin ($config, $dn);
20     $this->obj = $obj;
21   }
23   function execute()
24   {
25     /* Fill templating stuff */
26     $smarty     = get_smarty();
27     $display = "";
28     $display.= $smarty->fetch(get_template_path('faiPackageConfiguration.tpl', TRUE));
29     return($display);
30   }
32   /* Save data to object */
33   function save_object()
34   {
35   }
37   /* Check supplied data */
38   function check()
39   {
40     $message= array();
41     return ($message);
42   }
44   function save()
45   {
46   }
47 }
48 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
49 ?>