Code

Added navigation gray out if option is not available
[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 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     /* 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:80px;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     }
107     /* Get copy & paste icon */
108     if($this->parent->CopyPasteHandler){
109       $Copy_Paste = $this->parent->CopyPasteHandler->generatePasteIcon();
110     }else{
111       $Copy_Paste ="";
112     }
114     /* Add default header */
115     $listhead = MultiSelectWindow::get_default_header();
116     $listhead.=      " <input class='center' type='image' src='images/fai_new_profile.png' align='middle'
117       title='"._("New profile")."' name='Create_profile' alt='"._("P")."'>&nbsp;".
119       "<img class='center' src=\"images/list_seperator.png\" alt=\"\" align=\"middle\" height=\"16\" width=\"1\">&nbsp;".
121       " <input class='center' type='image' src='images/fai_new_partitionTable.png' align='middle'
122       title='"._("New partition table")."' name='Create_partition' alt='"._("PT")."'>&nbsp;".
124       " <input class='center' type='image' src='images/fai_new_script.png' align='middle'
125       title='"._("New scripts")."' name='Create_script' alt='"._("S")."'>&nbsp;".
127       " <input class='center' type='image' src='images/fai_new_hook.png' align='middle'
128       title='"._("New hooks")."' name='Create_hook' alt='"._("H")."'>&nbsp;".
130       " <input class='center' type='image' src='images/fai_new_variable.png' align='middle'
131       title='"._("New variables")."' name='Create_variable' alt='"._("V")."'>&nbsp;".
133       " <input class='center' type='image' src='images/fai_new_template.png' align='middle'
134       title='"._("New templates")."' name='Create_template' alt='"._("T")."'>&nbsp;".
136       " <input class='center' type='image' src='images/fai_new_packages.png' align='middle'
137       title='"._("New package list")."' name='Create_package' alt='"._("PK")."'>&nbsp;".
139       $Copy_Paste.
141       " <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;".
143       _("Base")."&nbsp;<select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
144       " <input class='center' type='image' src='images/list_submit.png' align='middle' title='"._("Submit department")."' name='submit_department' alt='".  _("Submit")."'>&nbsp;".
146       "</div>";
148     $this->SetListHeader($listhead);
149   }
151   /* so some basic settings */
152   function execute()
153   {
154     $this->ClearElementsList();
155     $this->GenHeader();
156   }
158   function setEntries($list)
159   {
160     /********************
161       Variable init
162      ********************/
164      $objects = array(
165            "FAIpartitionTable"  => array("IMG"=> "images/fai_partitionTable.png", "NAME"=>"Partition table","KZL"=> "PT", "VAR"=>"ShowPartitions"),
166            "FAIpackageList"     => array("IMG"=> "images/fai_packages.png",       "NAME"=>"Package list" ,  "KZL"=> "PL", "VAR"=>"ShowPackages"),
167            "FAIscript"          => array("IMG"=> "images/fai_script.png",         "NAME"=>"Scripts" ,       "KZL"=> "S",  "VAR"=>"ShowScripts"),
168            "FAIvariable"        => array("IMG"=> "images/fai_variable.png",       "NAME"=>"Variables" ,     "KZL"=> "V",  "VAR"=>"ShowVariables"),
169            "FAIhook"            => array("IMG"=> "images/fai_hook.png",           "NAME"=>"Hooks",          "KZL"=> "H",  "VAR"=>"ShowHooks"),
170            "FAIprofile"         => array("IMG"=> "images/fai_profile.png",        "NAME"=>"Profile" ,       "KZL"=> "P",  "VAR"=>"ShowProfiles"),
171            "FAItemplate"        => array("IMG"=> "images/fai_template.png",       "NAME"=>"Templates" ,     "KZL"=> "T",  "VAR"=>"ShowTemplates"));
173     $editlink ="<a href='?plug=".$_GET['plug']."&amp;edit_entry=%KEY%' title='%TITLE%'>%NAME%</a>";
175     /********************
176       Attach objects
177      ********************/
179      foreach($list as $key => $value){
180        $info     = "";
181        $img      = "";
182        $type     = $value['type'];
183        $abort    =false;
185        if(isset($objects[$type])){
186          $img   = "<img class='center' src='".$objects[$type]['IMG']."' title='".$objects[$type]['NAME']."' alt='".$objects[$type]['KZL']."'>";
187          $info  = $objects[$type]['NAME'];
188          $var   = $objects[$type]['VAR'];
189        }else{
190          $img   = "<img class='center' src='images/empty.png' alt=''>";
191          $info  = "";
192          $var   = "";
193        }
195        if((isset($value['description']))&&(!empty($value['description']))){
196          $desc= " [".$value['description']."]";
197        }else{
198          $desc= "";
199        }
201        /* Create action icons */
202        $action ="";
203        if($this->parent->CopyPasteHandler){
204          if($value['FAIstate'] != "freeze"){
205            $action .= "<input class='center' type='image'
206              src='images/editcut.png' alt='"._("cut")."' name='cut_%KEY%' title='"._("Cut this entry")."'>&nbsp;";
207          }
208          $action.= "<input class='center' type='image'
209            src='images/editcopy.png' alt='"._("copy")."' name='copy_%KEY%' title='"._("Copy this entry")."'>&nbsp;";
210        }
212        if($value['FAIstate'] == "freeze"){
213          $action .= "<input class='center' type='image' src='images/edit.png'  alt='"._("edit")."'
214            name='entry_edit_%KEY%' title='"._("Edit class")."'>";
215          $edi = $editlink;
216          $acti = $action;
217        }else{
218          $action .= "<input class='center' type='image' src='images/edit.png'  alt='"._("edit")."'
219            name='entry_edit_%KEY%' title='"._("Edit class")."'>";
220          $action .= "<input class='center' type='image' src='images/edittrash.png' alt='"._("delete")."'
221            name='entry_delete_%KEY%' title='"._("Delete class")."'>";
222          $acti = $action;
223          $edi = $editlink;
224        }
228        $field1 = array("string" => $img , "attach" => "style='text-align:center;width:20px;'");
229        $field2 = array("string" => preg_replace(array("/%KEY%/","/%NAME%/","/%TITLE%/"),array($key,$value['cn'].$desc,preg_replace('/ /', '&nbsp;', @LDAP::fix($value['dn']))),$edi) , "attach" => "style=''");
230        $field3 = array("string" => $info, "attach" => "style='width:200px;'");
231        $field4 = array("string" => preg_replace("/%KEY%/",$key,$acti) , "attach" => "style='width:80px;border-right:0px;text-align:right;'");
232        $this->AddElement(array($field1,$field2,$field3,$field4));
233     }
234   }
236   function Save()
237   {
238     MultiSelectWindow::Save();  
239   }
241   function save_object()
242   {
243     /* Save automatic created POSTs like regex, checkboxes */
244     MultiSelectWindow::save_object(); 
245     $_SESSION['faifilter']['branch'] = $this->selectedBranch; 
246   }
248 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
249 ?>