Code

Added gray out to navigation icons in divlist
[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= "";
103     /* Get all departments within this subtree */
104     $base = $this->config->current['BASE'];
105     $deps= get_list("(&(|(ou=*)(description=*))(objectClass=gosaDepartment))", $this->module, $base,
106                     array("ou", "description"), GL_SIZELIMIT | GL_SUBSEARCH);
108     /* Load possible departments */
109     $ui= get_userinfo();
110     $tdeps= $ui->get_module_departments("fai");
111     $ids = $this->config->idepartments;
112     foreach($deps as $dep){
113       if(isset($ids[$dep['dn']]) && in_array_ics($dep['dn'], $tdeps)){
114         $value = $ids[$dep['dn']];
115         if ($this->selectedBase == $dep['dn']){
116           $options.= "<option selected='selected' value='".$dep['dn']."'>$value</option>";
117         } else {
118           $options.= "<option value='".$dep['dn']."'>$value</option>";
119         }
120       }
121     }
123     /* Add seperator */
124     $add_sep = false;
126     /* Get complete fai acls, to be able to check if we must show or hide the snapshot abilities */ 
127     $acl_all = $ui->has_complete_category_acls($this->selectedBase,$this->module);
129     /* Add default header */
130     $listhead = MultiSelectWindow::get_default_header();
132     $acl = $ui->get_permissions($this->selectedBase,"fai/faiProfile");
133     if(preg_match("/c/",$acl)){
134       $listhead .=" <input class='center' type='image' src='images/fai_new_profile.png' align='middle'
135         title='"._("New profile")."' name='Create_profile' alt='"._("P")."'>&nbsp;";
136       $listhead .=" <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;";
137     }
139     /* Add snapshot icons, if we are allowed to write and create the complete fai module ($ui->has_complete_category_acls) */ 
140     if(preg_match("/(c.*w|w.*c)/",$acl_all)){ 
141       $listhead .= $this->get_snapshot_header($this->selectedBase);
142     }
144     /* Add copy & paste icons, currently disabled, this ability is not implemeneted yet */
145     if(preg_match("/(c.*w|w.*c)/",$acl_all) &&  isset($this->parent->CopyPasteHandler) && $this->parent->CopyPasteHandler){
146       $Copy_Paste = $this->parent->CopyPasteHandler->generatePasteIcon();
147     }
149     /* Append create icons for each fai component */
150     $arr = array(
151         array("images/fai_new_partitionTable.png" , _("New partition table")  ,"Create_partition" , _("PT") , "faiPartitionTable"),
152         array("images/fai_new_script.png"         , _("New scripts")          ,"Create_script"    , _("S")  , "faiScript"),
153         array("images/fai_new_hook.png"           , _("New hooks")            ,"Create_hook"      , _("H")  , "faiHook"),
154         array("images/fai_new_variable.png"       , _("New variables")        ,"Create_variable"  , _("V")  , "faiVariable"),
155         array("images/fai_new_template.png"       , _("New templates ")       ,"Create_template"  , _("I")  , "faiTemplate"),
156         array("images/fai_new_packages.png"       , _("New package list")     ,"Create_package"   , _("PK") , "faiPackage"));
158     foreach($arr as $ar){
159       $acl = $ui->get_permissions($this->selectedBase,"fai/".$ar[4]);
160       if(preg_match("/c/",$acl)){
161         $add_sep = true;
162         $listhead .=" <input class='center' type='image' src='".$ar[0]."' align='middle' title='".$ar[1]."' name='".$ar[2]."' alt='".$ar[3]."'>&nbsp;";
163       }
164     }
166     /* Add additional seperator */
167     if($add_sep){
168       $listhead .=" <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;";
169     }
170   
171     $listhead .=  _("Base")."&nbsp;<select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
172                   " <input class='center' type='image' src='images/list_submit.png' align='middle' 
173                   title='"._("Submit department")."' name='submit_department' alt='".  _("Submit")."'>&nbsp;".
174                 "</div>";
176     $this->SetListHeader($listhead);
177   }
179   /* so some basic settings */
180   function execute()
181   {
182     $this->ClearElementsList();
183     $this->GenHeader();
184     $this->AvailableBranches = $this->parent->getBranches();
185   }
187   function setEntries($list)
188   {
189     /********************
190       Variable init
191      ********************/
193      $objects = array(
194            "FAIpartitionTable"  => array("IMG"=> "images/fai_partitionTable.png", "NAME"=>"Partition table","KZL"=> "PT", "VAR"=>"ShowPartitions"),
195            "FAIpackageList"     => array("IMG"=> "images/fai_packages.png",       "NAME"=>"Package list" ,  "KZL"=> "PL", "VAR"=>"ShowPackages"),
196            "FAIscript"          => array("IMG"=> "images/fai_script.png",         "NAME"=>"Scripts" ,       "KZL"=> "S",  "VAR"=>"ShowScripts"),
197            "FAIvariable"        => array("IMG"=> "images/fai_variable.png",       "NAME"=>"Variables" ,     "KZL"=> "V",  "VAR"=>"ShowVariables"),
198            "FAIhook"            => array("IMG"=> "images/fai_hook.png",           "NAME"=>"Hooks",          "KZL"=> "H",  "VAR"=>"ShowHooks"),
199            "FAIprofile"         => array("IMG"=> "images/fai_profile.png",        "NAME"=>"Profile" ,       "KZL"=> "P",  "VAR"=>"ShowProfiles"),
200            "FAItemplate"        => array("IMG"=> "images/fai_template.png",       "NAME"=>"Templates" ,     "KZL"=> "T",  "VAR"=>"ShowTemplates"));
202     $editlink ="<a href='?plug=".$_GET['plug']."&amp;edit_entry=%KEY%' title='%TITLE%'>%NAME%</a>";
204     /* Dynamic action col, depending on snapshot icons */
205     $action_col_size = 50;
206     if($this->parent->snapshotEnabled()){
207       $action_col_size += 20;
208     }
210     /********************
211       Attach objects
212      ********************/
214      foreach($list as $key => $value){
215        $info     = "";
216        $img      = "";
217        $type     = $value['type'];
218        $abort    =false;
220        if(isset($objects[$type])){
221          $img   = "<img class='center' src='".$objects[$type]['IMG']."' title='".$objects[$type]['NAME']."' alt='".$objects[$type]['KZL']."'>";
222          $info  = $objects[$type]['NAME'];
223          $var   = $objects[$type]['VAR'];
224        }else{
225          $img   = "<img class='center' src='images/empty.png' alt=''>";
226          $info  = "";
227          $var   = "";
228        }
230        if((isset($value['description']))&&(!empty($value['description']))){
231          $desc= " [".$value['description']."]";
232        }else{
233          $desc= "";
234        }
237        if($value['FAIstate'] == "freeze"){
238          $action=  "<img src='images/closedlock.png' alt='F' class='center'><img src='images/empty.png' width='38' height='2' class='center' alt=''>";
239          $action.= "<input class='center' type='image' src='images/edit.png'  alt='"._("edit")."'
240            name='entry_edit_%KEY%' title='"._("Edit class")."'>";
241        }else{
242          $action= "<input class='center' type='image' src='images/edit.png'  alt='"._("edit")."'
243            name='entry_edit_%KEY%' title='"._("Edit class")."'>";
245          if(preg_match("/(c&w)/",$value['acl'])){
246            $action.= $this->GetSnapShotActions($value['dn']);;
247          }
249          if(preg_match("/d/",$value['acl'])){
250            $action.= "<input class='center' type='image' src='images/edittrash.png' alt='"._("delete")."'
251              name='entry_delete_%KEY%' title='"._("Delete class")."'>";
252          }
253        }
255        $edi = $editlink;
256        $acti = $action;
258        $field1 = array("string" => $img , "attach" => "style='text-align:center;width:20px;'");
259        $field2 = array("string" => preg_replace(array("/%KEY%/","/%NAME%/","/%TITLE%/"),array($key,$value['cn'].$desc,preg_replace('/ /', '&nbsp;', @LDAP::fix($value['dn']))),$edi) , "attach" => "style=''");
260        $field3 = array("string" => $info, "attach" => "style='width:200px;'");
261        $field4 = array("string" => preg_replace("/%KEY%/",$key,$acti) , "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'");
262        $this->AddElement(array($field1,$field2,$field3,$field4));
263      }
264   }
266   function Save()
267   {
268     MultiSelectWindow::Save();  
269   }
271   function save_object()
272   {
273     /* Save automatic created POSTs like regex, checkboxes */
274     MultiSelectWindow::save_object(); 
275     $_SESSION['faifilter']['branch'] = $this->selectedBranch; 
276   }
278 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
279 ?>