Code

Avoid initial reset of ocMapping. It is array() anyway.
[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", "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 FAI classes 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    /* Dynamic action col, depending on snapshot icons */
57     $action_col_size = 50;
58     if($this->parent->snapshotEnabled()){
59       $action_col_size += 20;
60     }
62     /* set Page header */
63     $this->AddHeader(array("string" => "&nbsp;",                "attach" => "style='text-align:center;width:20px;'"));
64     $this->AddHeader(array("string" => _("Name of FAI class"),  "attach" => "style=''"));
65     $this->AddHeader(array("string" => _("Class type"),         "attach" => "style='width:200px;'"));
66     $this->AddHeader(array("string" => _("Actions"),            "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'"));
68     $this->AddCheckBox("ShowProfiles"   , _("Display FAI profile objects")    ,_("Show profiles")     ,true);
69     $this->AddCheckBox("ShowTemplates"  , _("Display FAI template objects")   ,_("Show templates")    ,true);
70     $this->AddCheckBox("ShowScripts"    , _("Display FAI scripts")            ,_("Show scripts")      ,true);
71     $this->AddCheckBox("ShowHooks"      , _("Display FAI hooks")              ,_("Show hooks")        ,true);
72     $this->AddCheckBox("ShowVariables"  , _("Display FAI variables")          ,_("Show variables")    ,true);
73     $this->AddCheckBox("ShowPackages"   , _("Display FAI packages")           ,_("Show packages")     ,true);
74     $this->AddCheckBox("ShowPartitions" , _("Display FAI partitions")         ,_("Show partitions")   ,true);
76     /* Add SubSearch checkbox */
77     //$this->AddCheckBox(SEPERATOR);
78     //$this->AddCheckBox("SubSearch",  _("Select to search within subtrees"), _("Ignore subtrees"), false);
80     /*                  Name                 ,Text                              ,Default  , Connect with alphabet  */
81     $this->AddRegex   ("Regex",     _("Display users matching"),"*" , true);
82   }
84   function AddUserBoxToFilter($position){
85     $str = "";
86     if($position  == 2){
87       $smarty = get_smarty();
88       $smarty->assign("selectedBranch",$this->selectedBranch);
89       $smarty->assign("branchimage","images/branch.png");
90       $smarty->assign("branches",$this->AvailableBranches);
91       $str = $smarty->fetch(get_template_path('branch_selector.tpl', TRUE));
92     }
93     return($str);
94   }
96   function GenHeader()
97   {
98     /* Prepare departments,
99        which are shown in the listbox on top of the listbox
100      */
101     $options= "";
102     foreach ($this->config->idepartments as $key => $value){
103       if ($this->selectedBase == $key){
104         $options.= "<option selected='selected' value='$key'>$value</option>";
105       } else {
106         $options.= "<option value='$key'>$value</option>";
107       }
108     }
110         /* Create listhead, it will be shown on top of the divlist.
111      * It provides general navigation and object creation
112      */
113     $listhead =
114       "<div style='background:#F0F0F9;padding:5px;'>&nbsp;".
116       "<input class='center' type='image' src='images/list_root.png' align='middle'
117       title='"._("Go to root department")."' name='dep_root' alt='".      _("Root")."'>&nbsp;".
119       "<input class='center' type='image' src='images/list_up.png' align='middle'
120       title='"._("Go up one department")."' name='dep_back' alt='"._("Up"). "'>&nbsp;".
122       "<input class='center' type='image' src='images/list_home.png' align='middle'
123       title='"._("Go to users home department")."' name='dep_home' alt='"._("Home")."'>&nbsp;".
125       " <input class='center' type='image' src='images/list_reload.png' align='middle' title='"._("Reload list")."' name='submit_department' alt='".
126 _("Submit")."'>&nbsp;".
128       "<img class='center' src=\"images/list_seperator.png\" alt=\"\" align=\"middle\" height=\"16\" width=\"1\">&nbsp;".
130       " <input class='center' type='image' src='images/fai_new_profile.png' align='middle'
131       title='"._("New profile")."' name='Create_profile' alt='"._("P")."'>&nbsp;".
133       "<img class='center' src=\"images/list_seperator.png\" alt=\"\" align=\"middle\" height=\"16\" width=\"1\">&nbsp;";
134       $listhead .= $this->get_snapshot_header($this->selectedBase);
135       $listhead .= " <input class='center' type='image' src='images/fai_new_partitionTable.png' align='middle'
136       title='"._("New partition table")."' name='Create_partition' alt='"._("PT")."'>&nbsp;".
138       " <input class='center' type='image' src='images/fai_new_script.png' align='middle'
139       title='"._("New scripts")."' name='Create_script' alt='"._("S")."'>&nbsp;".
141       " <input class='center' type='image' src='images/fai_new_hook.png' align='middle'
142       title='"._("New hooks")."' name='Create_hook' alt='"._("H")."'>&nbsp;".
144       " <input class='center' type='image' src='images/fai_new_variable.png' align='middle'
145       title='"._("New variables")."' name='Create_variable' alt='"._("V")."'>&nbsp;".
147       " <input class='center' type='image' src='images/fai_new_template.png' align='middle'
148       title='"._("New templates")."' name='Create_template' alt='"._("T")."'>&nbsp;".
150       " <input class='center' type='image' src='images/fai_new_packages.png' align='middle'
151       title='"._("New package list")."' name='Create_package' alt='"._("PK")."'>&nbsp;".
153       " <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;".
155       _("Base")."&nbsp;<select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
156       " <input class='center' type='image' src='images/list_submit.png' align='middle' title='"._("Submit department")."' name='submit_department' alt='".  _("Submit")."'>&nbsp;".
158       "</div>";
160     $this->SetListHeader($listhead);
161   }
163   /* so some basic settings */
164   function execute()
165   {
166     $this->ClearElementsList();
167     $this->GenHeader();
168     $this->AvailableBranches = $this->parent->getBranches();
169   }
171   function setEntries($list)
172   {
173     /********************
174       Variable init
175      ********************/
177      $objects = array(
178            "FAIpartitionTable"  => array("IMG"=> "images/fai_partitionTable.png", "NAME"=>"Partition table","KZL"=> "PT", "VAR"=>"ShowPartitions"),
179            "FAIpackageList"     => array("IMG"=> "images/fai_packages.png",       "NAME"=>"Package list" ,  "KZL"=> "PL", "VAR"=>"ShowPackages"),
180            "FAIscript"          => array("IMG"=> "images/fai_script.png",         "NAME"=>"Scripts" ,       "KZL"=> "S",  "VAR"=>"ShowScripts"),
181            "FAIvariable"        => array("IMG"=> "images/fai_variable.png",       "NAME"=>"Variables" ,     "KZL"=> "V",  "VAR"=>"ShowVariables"),
182            "FAIhook"            => array("IMG"=> "images/fai_hook.png",           "NAME"=>"Hooks",          "KZL"=> "H",  "VAR"=>"ShowHooks"),
183            "FAIprofile"         => array("IMG"=> "images/fai_profile.png",        "NAME"=>"Profile" ,       "KZL"=> "P",  "VAR"=>"ShowProfiles"),
184            "FAItemplate"        => array("IMG"=> "images/fai_template.png",       "NAME"=>"Templates" ,     "KZL"=> "T",  "VAR"=>"ShowTemplates"));
186     $editlink ="<a href='?plug=".$_GET['plug']."&amp;edit_entry=%KEY%' title='%TITLE%'>%NAME%</a>";
188     /* Dynamic action col, depending on snapshot icons */
189     $action_col_size = 50;
190     if($this->parent->snapshotEnabled()){
191       $action_col_size += 20;
192     }
194     /********************
195       Attach objects
196      ********************/
198      foreach($list as $key => $value){
199        $info     = "";
200        $img      = "";
201        $type     = $value['type'];
202        $abort    =false;
204        if(isset($objects[$type])){
205          $img   = "<img class='center' src='".$objects[$type]['IMG']."' title='".$objects[$type]['NAME']."' alt='".$objects[$type]['KZL']."'>";
206          $info  = $objects[$type]['NAME'];
207          $var   = $objects[$type]['VAR'];
208        }else{
209          $img   = "<img class='center' src='images/empty.png' alt=''>";
210          $info  = "";
211          $var   = "";
212        }
214        if((isset($value['description']))&&(!empty($value['description']))){
215          $desc= " [".$value['description']."]";
216        }else{
217          $desc= "";
218        }
220        if($value['FAIstate'] == "freeze"){
221          $action= "<input class='center' type='image' src='images/edit.png'  alt='"._("edit")."'
222            name='entry_edit_%KEY%' title='"._("Edit class")."'>";
223          $edi = $editlink;
224          $acti = $action;
225        }else{
226          $action= "<input class='center' type='image' src='images/edit.png'  alt='"._("edit")."'
227            name='entry_edit_%KEY%' title='"._("Edit class")."'>";
228          $action.= $this->GetSnapShotActions($value['dn']);;
229          $action.= "<input class='center' type='image' src='images/edittrash.png' alt='"._("delete")."'
230            name='entry_delete_%KEY%' title='"._("Delete class")."'>";
231          $acti = $action;
232          $edi = $editlink;
233        }
235        $field1 = array("string" => $img , "attach" => "style='text-align:center;width:20px;'");
236        $field2 = array("string" => preg_replace(array("/%KEY%/","/%NAME%/","/%TITLE%/"),array($key,$value['cn'].$desc,preg_replace('/ /', '&nbsp;', @LDAP::fix($value['dn']))),$edi) , "attach" => "style=''");
237        $field3 = array("string" => $info, "attach" => "style='width:200px;'");
238        $field4 = array("string" => preg_replace("/%KEY%/",$key,$acti) , "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'");
239        $this->AddElement(array($field1,$field2,$field3,$field4));
240      }
241   }
243   function Save()
244   {
245     MultiSelectWindow::Save();  
246   }
248   function save_object()
249   {
250     /* Save automatic created POSTs like regex, checkboxes */
251     MultiSelectWindow::save_object(); 
252     $_SESSION['faifilter']['branch'] = $this->selectedBranch; 
253   }
255 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
256 ?>