Code

Added remove multiple to fai
[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     /* Toggle all selected / deselected */
63     $chk = "<input type='checkbox' id='select_all' name='select_all'
64                onClick='toggle_all_(\"^item_selected_[0-9]*$\",\"select_all\");' >";
66     /* set Page header */
67     $this->AddHeader(array("string"=> $chk,          "attach"=>"style='width:20px;'"));
68     $this->AddHeader(array("string" => "&nbsp;",                "attach" => "style='text-align:center;width:20px;'"));
69     $this->AddHeader(array("string" => _("Name of FAI class"),  "attach" => "style=''"));
70     $this->AddHeader(array("string" => _("Class type"),         "attach" => "style='width:200px;'"));
71     $this->AddHeader(array("string" => _("Actions"),            "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'"));
73     $this->AddCheckBox("ShowProfiles"   , _("Display FAI profile objects")    ,_("Show profiles")     ,true);
74     $this->AddCheckBox("ShowTemplates"  , _("Display FAI template objects")   ,_("Show templates")    ,true);
75     $this->AddCheckBox("ShowScripts"    , _("Display FAI scripts")            ,_("Show scripts")      ,true);
76     $this->AddCheckBox("ShowHooks"      , _("Display FAI hooks")              ,_("Show hooks")        ,true);
77     $this->AddCheckBox("ShowVariables"  , _("Display FAI variables")          ,_("Show variables")    ,true);
78     $this->AddCheckBox("ShowPackages"   , _("Display FAI packages")           ,_("Show packages")     ,true);
79     $this->AddCheckBox("ShowPartitions" , _("Display FAI partitions")         ,_("Show partitions")   ,true);
81     /* Add SubSearch checkbox */
82     //$this->AddCheckBox(SEPERATOR);
83     //$this->AddCheckBox("SubSearch",  _("Select to search within subtrees"), _("Ignore subtrees"), false);
85     /*                  Name                 ,Text                              ,Default  , Connect with alphabet  */
86     $this->AddRegex   ("Regex",     _("Display users matching"),"*" , true);
87   }
89   function AddUserBoxToFilter($position){
90     $str = "";
91     if($position  == 2){
92       $smarty = get_smarty();
93       $smarty->assign("selectedBranch",$this->selectedBranch);
94       $smarty->assign("branchimage","images/branch.png");
95       $smarty->assign("branches",$this->AvailableBranches);
96       $str = $smarty->fetch(get_template_path('branch_selector.tpl', TRUE));
97     }
98     return($str);
99   }
101   function GenHeader()
102   {
103     /* Prepare departments,
104        which are shown in the listbox on top of the listbox
105      */
106     $options= "";
108     /* Get all departments within this subtree */
109     $base = $this->config->current['BASE'];
110     $deps= get_list("(&(|(ou=*)(description=*))(objectClass=gosaDepartment))", $this->module, $base,
111                     array("ou", "description"), GL_SIZELIMIT | GL_SUBSEARCH);
113     /* Load possible departments */
114     $ui= get_userinfo();
115     $tdeps= $ui->get_module_departments("fai");
116     $ids = $this->config->idepartments;
117     foreach($deps as $dep){
118       if(isset($ids[$dep['dn']]) && in_array_ics($dep['dn'], $tdeps)){
119         $value = $ids[$dep['dn']];
120         if ($this->selectedBase == $dep['dn']){
121           $options.= "<option selected='selected' value='".$dep['dn']."'>$value</option>";
122         } else {
123           $options.= "<option value='".$dep['dn']."'>$value</option>";
124         }
125       }
126     }
128     /* Add seperator */
129     $add_sep = false;
131     /* Get complete fai acls, to be able to check if we must show or hide the snapshot abilities */ 
132     $acl_all = $ui->has_complete_category_acls($this->selectedBase,$this->module);
134     /* Add default header */
135     $listhead = MultiSelectWindow::get_default_header();
137     $acl = $ui->get_permissions($this->selectedBase,"fai/faiProfile");
138     if(preg_match("/c/",$acl)){
139       $listhead .=" <input class='center' type='image' src='images/fai_new_profile.png' align='middle'
140         title='"._("New profile")."' name='Create_profile' alt='"._("P")."'>&nbsp;";
141       $listhead .=" <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;";
142     }
144     /* Add snapshot icons, if we are allowed to write and create the complete fai module ($ui->has_complete_category_acls) */ 
145     if(preg_match("/(c.*w|w.*c)/",$acl_all)){ 
146       $listhead .= $this->get_snapshot_header($this->selectedBase);
147     }
149     /* Add copy & paste icons, currently disabled, this ability is not implemeneted yet */
150     if(preg_match("/(c.*w|w.*c)/",$acl_all) &&  isset($this->parent->CopyPasteHandler) && $this->parent->CopyPasteHandler){
151       $Copy_Paste = $this->parent->CopyPasteHandler->generatePasteIcon();
152     }
154     /* Append create icons for each fai component */
155     $arr = array(
156         array("images/fai_new_partitionTable.png" , _("New partition table")  ,"Create_partition" , _("PT") , "faiPartitionTable"),
157         array("images/fai_new_script.png"         , _("New scripts")          ,"Create_script"    , _("S")  , "faiScript"),
158         array("images/fai_new_hook.png"           , _("New hooks")            ,"Create_hook"      , _("H")  , "faiHook"),
159         array("images/fai_new_variable.png"       , _("New variables")        ,"Create_variable"  , _("V")  , "faiVariable"),
160         array("images/fai_new_template.png"       , _("New templates ")       ,"Create_template"  , _("I")  , "faiTemplate"),
161         array("images/fai_new_packages.png"       , _("New package list")     ,"Create_package"   , _("PK") , "faiPackage"));
163     foreach($arr as $ar){
164       $acl = $ui->get_permissions($this->selectedBase,"fai/".$ar[4]);
165       if(preg_match("/c/",$acl)){
166         $add_sep = true;
167         $listhead .=" <input class='center' type='image' src='".$ar[0]."' align='middle' title='".$ar[1]."' name='".$ar[2]."' alt='".$ar[3]."'>&nbsp;";
168       }
169     }
171     /* Add additional seperator */
172     if($add_sep){
173       $listhead .=" <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;";
174     }
175   
176     $listhead .=  _("Base")."&nbsp;<select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
177                   " <input class='center' type='image' src='images/list_submit.png' align='middle' 
178                   title='"._("Submit department")."' name='submit_department' alt='".  _("Submit")."'>&nbsp;";
180     /* Multiple options */
181     $listhead .= "&nbsp;<input class='center' type='image' align='middle' src='images/edittrash.png'
182         title='"._("Remove selected fai objects")."' alt='"._("Remove fai objects")."' name='remove_multiple_fai_objects'>&nbsp;";
184     $listhead .="</div>";;
187     $this->SetListHeader($listhead);
188   }
190   /* so some basic settings */
191   function execute()
192   {
193     $this->ClearElementsList();
194     $this->GenHeader();
195     $this->AvailableBranches = $this->parent->getBranches();
196   }
198   function setEntries($list)
199   {
200     /********************
201       Variable init
202      ********************/
204      $objects = array(
205            "FAIpartitionTable"  => array("IMG"=> "images/fai_partitionTable.png", "NAME"=>"Partition table","KZL"=> "PT", "VAR"=>"ShowPartitions"),
206            "FAIpackageList"     => array("IMG"=> "images/fai_packages.png",       "NAME"=>"Package list" ,  "KZL"=> "PL", "VAR"=>"ShowPackages"),
207            "FAIscript"          => array("IMG"=> "images/fai_script.png",         "NAME"=>"Scripts" ,       "KZL"=> "S",  "VAR"=>"ShowScripts"),
208            "FAIvariable"        => array("IMG"=> "images/fai_variable.png",       "NAME"=>"Variables" ,     "KZL"=> "V",  "VAR"=>"ShowVariables"),
209            "FAIhook"            => array("IMG"=> "images/fai_hook.png",           "NAME"=>"Hooks",          "KZL"=> "H",  "VAR"=>"ShowHooks"),
210            "FAIprofile"         => array("IMG"=> "images/fai_profile.png",        "NAME"=>"Profile" ,       "KZL"=> "P",  "VAR"=>"ShowProfiles"),
211            "FAItemplate"        => array("IMG"=> "images/fai_template.png",       "NAME"=>"Templates" ,     "KZL"=> "T",  "VAR"=>"ShowTemplates"));
213     $editlink ="<a href='?plug=".$_GET['plug']."&amp;edit_entry=%KEY%' title='%TITLE%'>%NAME%</a>";
215     /* Dynamic action col, depending on snapshot icons */
216     $action_col_size = 50;
217     if($this->parent->snapshotEnabled()){
218       $action_col_size += 20;
219     }
221     /********************
222       Attach objects
223      ********************/
225      foreach($list as $key => $value){
226        $info     = "";
227        $img      = "";
228        $type     = $value['type'];
229        $abort    =false;
231        if(isset($objects[$type])){
232          $img   = "<img class='center' src='".$objects[$type]['IMG']."' title='".$objects[$type]['NAME']."' alt='".$objects[$type]['KZL']."'>";
233          $info  = $objects[$type]['NAME'];
234          $var   = $objects[$type]['VAR'];
235        }else{
236          $img   = "<img class='center' src='images/empty.png' alt=''>";
237          $info  = "";
238          $var   = "";
239        }
241        if((isset($value['description']))&&(!empty($value['description']))){
242          $desc= " [".$value['description']."]";
243        }else{
244          $desc= "";
245        }
248        if($value['FAIstate'] == "freeze"){
249          $action=  "<img src='images/closedlock.png' alt='F' class='center'><img src='images/empty.png' width='38' height='2' class='center' alt=''>";
250          $action.= "<input class='center' type='image' src='images/edit.png'  alt='"._("edit")."'
251            name='entry_edit_%KEY%' title='"._("Edit class")."'>";
252        }else{
253          $action= "<input class='center' type='image' src='images/edit.png'  alt='"._("edit")."'
254            name='entry_edit_%KEY%' title='"._("Edit class")."'>";
256          if(preg_match("/(c&w)/",$value['acl'])){
257            $action.= $this->GetSnapShotActions($value['dn']);;
258          }
260          if(preg_match("/d/",$value['acl'])){
261            $action.= "<input class='center' type='image' src='images/edittrash.png' alt='"._("delete")."'
262              name='entry_delete_%KEY%' title='"._("Delete class")."'>";
263          }
264        }
266        $edi = $editlink;
267        $acti = $action;
269        /* Create each field */
270        $field0 = array("string" => "<input type='checkbox' id='item_selected_".$key."' name='item_selected_".$key."'>" ,
271            "attach" => "style='width:20px;'");
272        $field1 = array("string" => $img , "attach" => "style='text-align:center;width:20px;'");
273        $field2 = array("string" => preg_replace(array("/%KEY%/","/%NAME%/","/%TITLE%/"),array($key,$value['cn'].$desc,preg_replace('/ /', '&nbsp;', @LDAP::fix($value['dn']))),$edi) , "attach" => "style=''");
274        $field3 = array("string" => $info, "attach" => "style='width:200px;'");
275        $field4 = array("string" => preg_replace("/%KEY%/",$key,$acti) , "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'");
276        $this->AddElement(array($field0,$field1,$field2,$field3,$field4));
277      }
278   }
280   function Save()
281   {
282     MultiSelectWindow::Save();  
283   }
285   function save_object()
286   {
287     /* Save automatic created POSTs like regex, checkboxes */
288     MultiSelectWindow::save_object(); 
289     $_SESSION['faifilter']['branch'] = $this->selectedBranch; 
290   }
292 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
293 ?>