Code

Upps
[gosa.git] / plugins / admin / fai / class_divListFai.inc
1 <?php
3 class divListFai extends MultiSelectWindow
4 {
5   /* Current base */
6   var $selectedBase       = "";
7   var $selectedBranch     = "main";
8   var $AvailableBranches  = array();
9   var $departments        = array();
11   /* Regex */
12   var $Regex              = "*";
13   var $ShowProfiles;
14   var $ShowTemplates;
15   var $ShowScripts;
16   var $ShowHooks;
17   var $ShowVariables;
18   var $ShowPackages;
19   var $ShowPartitions;
21   /* Subsearch checkbox */
22   var $SubSearch;
24   var $parent             ;
25   var $ui                 ;
27   var $SaveAdditionalVars = array("selectedBranch");
29   function divListFai ($config,$parent)
30   {
31     MultiSelectWindow::MultiSelectWindow($config,"Fai");
32     
33     $this->parent       = $parent;
34     $this->ui           = get_userinfo();
36     /* Set default base */
37     if(!isset($_SESSION['CurrentMainBase'])){
38       $_SESSION['CurrentMainBase'] = $this->config->current['BASE'];
39     }
40     $this->selectedBase = $_SESSION['CurrentMainBase'];
42     /* Set list strings */
43     $this->SetTitle(_("List of FAI classes"));
44     $this->SetSummary(_("This table displays all systems, in the selected tree."));
46     /* Result page will look like a headpage */
47     $this->SetHeadpageMode();
48     $this->SetInformation(_("This menu allows you to create, delete and edit FAI classes."));
50     $this->EnableAplhabet   (true);
51   
52     /* Disable buttonsm */
53     $this->EnableCloseButton(false);
54     $this->EnableSaveButton (false);
56     /* set Page header */
57     $this->AddHeader(array("string" => "&nbsp;",                "attach" => "style='text-align:center;width:20px;'"));
58     $this->AddHeader(array("string" => _("Name of FAI class"),  "attach" => "style=''"));
59     $this->AddHeader(array("string" => _("Class type"),         "attach" => "style='width:200px;'"));
60     $this->AddHeader(array("string" => _("Actions"),            "attach" => "style='width:60px;border-right:0px;text-align:right;'"));
62     $this->AddCheckBox("ShowProfiles"   , _("Display FAI profile objects")    ,_("Show profiles")     ,true);
63     $this->AddCheckBox("ShowTemplates"  , _("Display FAI template objects")   ,_("Show templates")    ,true);
64     $this->AddCheckBox("ShowScripts"    , _("Display FAI scripts")            ,_("Show scripts")      ,true);
65     $this->AddCheckBox("ShowHooks"      , _("Display FAI hooks")              ,_("Show hooks")        ,true);
66     $this->AddCheckBox("ShowVariables"  , _("Display FAI variables")          ,_("Show variables")    ,true);
67     $this->AddCheckBox("ShowPackages"   , _("Display FAI packages")           ,_("Show packages")     ,true);
68     $this->AddCheckBox("ShowPartitions" , _("Display FAI partitions")         ,_("Show partitions")   ,true);
70     /* Add SubSearch checkbox */
71     //$this->AddCheckBox(SEPERATOR);
72     //$this->AddCheckBox("SubSearch",  _("Select to search within subtrees"), _("Ignore subtrees"), false);
74     /*                  Name                 ,Text                              ,Default  , Connect with alphabet  */
75     $this->AddRegex   ("Regex",     _("Display users matching"),"*" , true);
76   }
78   function AddUserBoxToFilter($position){
79     $str = "";
80     if($position  == 2){
81       $smarty = get_smarty();
82       $smarty->assign("selectedBranch",$this->selectedBranch);
83       $smarty->assign("branchimage","images/branch.png");
84       $smarty->assign("branches",$this->AvailableBranches);
85       $str = $smarty->fetch(get_template_path('branch_selector.tpl', TRUE));
86     }
87     return($str);
88   }
90   function GenHeader()
91   {
92     /* Prepare departments,
93        which are shown in the listbox on top of the listbox
94      */
95     $options= "";
96     foreach ($this->config->idepartments as $key => $value){
97       if ($this->selectedBase == $key){
98         $options.= "<option selected='selected' value='$key'>$value</option>";
99       } else {
100         $options.= "<option value='$key'>$value</option>";
101       }
102     }
104         /* Create listhead, it will be shown on top of the divlist.
105      * It provides general navigation and object creation
106      */
107     $listhead =
108       "<div style='background:#F0F0F9;padding:5px;'>&nbsp;".
110       "<input class='center' type='image' src='images/list_root.png' align='middle'
111       title='"._("Go to root department")."' name='dep_root' alt='".      _("Root")."'>&nbsp;".
113       "<input class='center' type='image' src='images/list_up.png' align='middle'
114       title='"._("Go up one department")."' name='dep_back' alt='"._("Up"). "'>&nbsp;".
116       "<input class='center' type='image' src='images/list_home.png' align='middle'
117       title='"._("Go to users home department")."' name='dep_home' alt='"._("Home")."'>&nbsp;".
119       " <input class='center' type='image' src='images/list_reload.png' align='middle' title='"._("Reload list")."' name='submit_department' alt='".
120 _("Submit")."'>&nbsp;".
122       "<img class='center' src=\"images/list_seperator.png\" alt=\"\" align=\"middle\" height=\"16\" width=\"1\">&nbsp;".
124       " <input class='center' type='image' src='images/fai_new_profile.png' align='middle'
125       title='"._("New profile")."' name='Create_profile' alt='"._("P")."'>&nbsp;".
127       "<img class='center' src=\"images/list_seperator.png\" alt=\"\" align=\"middle\" height=\"16\" width=\"1\">&nbsp;".
129       " <input class='center' type='image' src='images/fai_new_partitionTable.png' align='middle'
130       title='"._("New partition table")."' name='Create_partition' alt='"._("PT")."'>&nbsp;".
132       " <input class='center' type='image' src='images/fai_new_script.png' align='middle'
133       title='"._("New scripts")."' name='Create_script' alt='"._("S")."'>&nbsp;".
135       " <input class='center' type='image' src='images/fai_new_hook.png' align='middle'
136       title='"._("New hooks")."' name='Create_hook' alt='"._("H")."'>&nbsp;".
138       " <input class='center' type='image' src='images/fai_new_variable.png' align='middle'
139       title='"._("New variables")."' name='Create_variable' alt='"._("V")."'>&nbsp;".
141       " <input class='center' type='image' src='images/fai_new_template.png' align='middle'
142       title='"._("New templates")."' name='Create_template' alt='"._("T")."'>&nbsp;".
144       " <input class='center' type='image' src='images/fai_new_packages.png' align='middle'
145       title='"._("New package list")."' name='Create_package' alt='"._("PK")."'>&nbsp;".
147       " <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;".
149       _("Base")."&nbsp;<select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
150       " <input class='center' type='image' src='images/list_submit.png' align='middle' title='"._("Submit department")."' name='submit_department' alt='".  _("Submit")."'>&nbsp;".
152       "</div>";
154     $this->SetListHeader($listhead);
155   }
157   /* so some basic settings */
158   function execute()
159   {
160     $this->ClearElementsList();
161     $this->GenHeader();
162     $this->AvailableBranches = $this->parent->getBranches();
163   }
165   function setEntries($list)
166   {
167     /********************
168       Variable init
169      ********************/
171      $objects = array(
172            "FAIpartitionTable"  => array("IMG"=> "images/fai_partitionTable.png", "NAME"=>"Partition table","KZL"=> "PT", "VAR"=>"ShowPartitions"),
173            "FAIpackageList"     => array("IMG"=> "images/fai_packages.png",       "NAME"=>"Package list" ,  "KZL"=> "PL", "VAR"=>"ShowPackages"),
174            "FAIscript"          => array("IMG"=> "images/fai_script.png",         "NAME"=>"Scripts" ,       "KZL"=> "S",  "VAR"=>"ShowScripts"),
175            "FAIvariable"        => array("IMG"=> "images/fai_variable.png",       "NAME"=>"Variables" ,     "KZL"=> "V",  "VAR"=>"ShowVariables"),
176            "FAIhook"            => array("IMG"=> "images/fai_hook.png",           "NAME"=>"Hooks",          "KZL"=> "H",  "VAR"=>"ShowHooks"),
177            "FAIprofile"         => array("IMG"=> "images/fai_profile.png",        "NAME"=>"Profile" ,       "KZL"=> "P",  "VAR"=>"ShowProfiles"),
178            "FAItemplate"        => array("IMG"=> "images/fai_template.png",       "NAME"=>"Templates" ,     "KZL"=> "T",  "VAR"=>"ShowTemplates"));
180     $editlink ="<a href='?plug=".$_GET['plug']."&amp;edit_entry=%KEY%' title='%TITLE%'>%NAME%</a>";
182     /********************
183       Attach objects
184      ********************/
186      foreach($list as $key => $value){
187        $info     = "";
188        $img      = "";
189        $type     = $value['type'];
190        $abort    =false;
192        if(isset($objects[$type])){
193          $img   = "<img class='center' src='".$objects[$type]['IMG']."' title='".$objects[$type]['NAME']."' alt='".$objects[$type]['KZL']."'>";
194          $info  = $objects[$type]['NAME'];
195          $var   = $objects[$type]['VAR'];
196        }else{
197          $img   = "<img class='center' src='images/empty.png' alt=''>";
198          $info  = "";
199          $var   = "";
200        }
202        if((isset($value['description']))&&(!empty($value['description']))){
203          $desc= " [".$value['description']."]";
204        }else{
205          $desc= "";
206        }
208        if($value['FAIstate'] == "freeze"){
209          $action  = "<input class='center' type='image' src='images/edit.png'  alt='"._("edit")."'
210            name='entry_edit_%KEY%' title='"._("Edit class")."'>";
211          $edi = $editlink;
212          $acti = $action;
213        }else{
214          $action  = "<input class='center' type='image' src='images/edit.png'  alt='"._("edit")."'
215            name='entry_edit_%KEY%' title='"._("Edit class")."'>";
216          $action .= "<input class='center' type='image' src='images/edittrash.png' alt='"._("delete")."'
217            name='entry_delete_%KEY%' title='"._("Delete class")."'>";
218          $acti = $action;
219          $edi = $editlink;
220        }
222        $field1 = array("string" => $img , "attach" => "style='text-align:center;width:20px;'");
223        $field2 = array("string" => preg_replace(array("/%KEY%/","/%NAME%/","/%TITLE%/"),array($key,$value['cn'].$desc,preg_replace('/ /', '&nbsp;', @LDAP::fix($value['dn']))),$edi) , "attach" => "style=''");
224        $field3 = array("string" => $info, "attach" => "style='width:200px;'");
225        $field4 = array("string" => preg_replace("/%KEY%/",$key,$acti) , "attach" => "style='width:60px;border-right:0px;text-align:right;'");
226        $this->AddElement(array($field1,$field2,$field3,$field4));
227     }
228   }
230   function Save()
231   {
232     MultiSelectWindow::Save();  
233   }
235   function save_object()
236   {
237     /* Save automatic created POSTs like regex, checkboxes */
238     MultiSelectWindow::save_object(); 
239     $_SESSION['faifilter']['branch'] = $this->selectedBranch; 
240   }
242 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
243 ?>