Code

Updated snapshot stuff, check acls here too.
[gosa.git] / gosa-plugins / goto / admin / devices / class_divListDevices.inc
1 <?php
3 class divListDevices extends MultiSelectWindow
4 {
5   /* Current base */
6   var $selectedBase       = "";
7   var $departments        = array();
8   var $parent               ;
9   var $ui                   ;
11   /* Regex */
12   var $Regex              = "*";
14   /* Subsearch checkbox */
15   var $SubSearch;
17   function divListDevices (&$config, &$parent)
18   {
19     /* Create divlist and setup */
20     MultiSelectWindow::MultiSelectWindow($config, "Devices", "devices");
21  
22     /* initialize required attributes */ 
23     $this->parent           = &$parent;
24     $this->ui               = get_userinfo();
26     /* set Page header */
27     $action_col_size = 80;
28     if($this->parent->snapshotEnabled()){
29       $action_col_size += 38;
30     }
32     /* Set list strings */
33     $this->SetTitle       (_("List of defined devices"));
34     $this->SetSummary     (_("List of defined devices"));
36     /* Result page will look like a headpage */
37     $this->SetHeadpageMode();
38     $this->EnableAplhabet(true);
39   
40     /* Disable buttonsm */
41     $this->EnableCloseButton(false);
42     $this->EnableSaveButton (false);
44     /* Toggle all selected / deselected */
45     $chk = "<input type='checkbox' id='select_all' name='select_all' title='"._("Select all")."'
46                onClick='toggle_all_(\"^item_selected_[0-9]*$\",\"select_all\");' >";
48     /* set Page header */
49     $this->AddHeader(array("string"=> $chk,          "attach"=>"style='width:20px;'"));
50     $this->AddHeader(array("string" => "&nbsp;",                "attach" => "style='text-align:center;width:20px;'"));
51     $this->AddHeader(array("string" => _("Device name")." / "._("Department"), "attach" => "style=''"));
52     $this->AddHeader(array("string" => _("Actions"),            "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'"));
54     /* Add SubSearch checkbox */
55     $this->AddCheckBox("SubSearch",  msgPool::selectToView("","subsearch"), msgPool::selectToView("","subsearch_small"), false);
57     /*                  Name                 ,Text                              ,Default  , Connect with alphabet  */
58     $this->AddRegex   ("Regex",     _("Display devices matching"),"*" , true);
59   }
62   /* Create list header, with create / copy & paste etc*/
63   function GenHeader()
64   {
65     /* Prepare departments,
66        which are shown in the listbox on top of the listbox
67      */
68     $options= "";
70     /* Get all departments within this subtree */
71     $ui= get_userinfo();
72     $first = "";
73     $found = FALSE;
74     $base = $this->config->current['BASE'];
76     /* Add base */
77     $tmp = array();
78     $tmp[] = array("dn"=>$this->config->current['BASE']);
79     $tmp=  array_merge($tmp,get_list("(&(|(ou=*)(description=*))(objectClass=gosaDepartment))", $this->module, $base,
80                     array("ou", "description"), GL_SIZELIMIT | GL_SUBSEARCH));
82     $deps = array();
83     foreach($tmp as $tm){
84       $deps[$tm['dn']] = $tm['dn'];
85     }
87     /* Load possible departments */
88     $ui= get_userinfo();
89     $tdeps= $ui->get_module_departments($this->module);
90     $ids = $this->config->idepartments;
91     $first = "";
92     $found = FALSE;
93     foreach($ids as $dep => $name){
94       if(isset($deps[$dep]) && in_array_ics($dep, $tdeps)){
96         /* Keep first base dn in mind, we could need this
97          *  info if no valid base was found
98          */
99         if(empty($first)) {
100           $first = $dep['dn'];
101         }
103         $value = $ids[$dep];
104         if ($this->selectedBase == $dep){
105           $found = TRUE;
106           $options.= "<option selected='selected' value='".$dep."'>$value</option>";
107         } else {
108           $options.= "<option value='".$dep."'>$value</option>";
109         }
110       }
111     }
113     /* The currently used base is not visible with your acl setup.
114      * Set base to first useable base.
115      */
116     if(!$found){
117       $this->selectedBase = $first;
118     }
120     /* Get acls */
121     $ui       = get_userinfo();
122     $acl      = $ui->get_permissions("cn=dummy,".get_ou('deviceou').$this->selectedBase,"devices/deviceGeneric");
123     $acl_all  = $ui->has_complete_category_acls($this->selectedBase,"devices") ;
126     /* If this is true we add an additional seperator. Just look a few lines below */  
127     $listhead = MultiSelectWindow::get_default_header();
129     /* And at least add a department selection box */
130     $listhead .=  _("Base")."&nbsp;<select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
131       " <input class='center' type='image' src='images/lists/submit.png' align='middle' 
132         title='"._("Submit department")."' name='submit_department' alt='"._("Submit")."'>&nbsp;";
134     /* Create Layers menu */
135     $s  = ".|"._("Actions")."|\n";
137     /* Append create options */
138     if(preg_match("/c/",$acl)) {
139       $s .= "..|<img src='images/lists/new.png' alt='' border='0' class='center'>".
140         "&nbsp;"._("Create")."|\n";
141       $s.= "...|<input class='center' type='image' src='images/list_new_device.png' alt=''>".
142         "&nbsp;"._("Device")."|device_new|\n";
143       $s.= "..|---|\n";
144     }
146     /* Multiple options */
147     $s.= "..|<img src='images/lists/trash.png' alt='' border='0' class='center'>".
148       "&nbsp;"._("Remove")."|"."remove_multiple|\n";
150     /* Add Copy & Paste header */
151     $s .= $this->parent->get_copypaste_header($this->selectedBase,$this->module);
153     /* Add snapshot icons */
154     $s .= $this->parent->get_snapshot_header($this->selectedBase,$this->module);
156     $this->SetDropDownHeaderMenu($s);
157                                                                        
158     $this->SetListHeader($listhead);
159   }
162   /* Some basic settings */
163   function execute()
164   {
165     $this->ClearElementsList();
166     $this->GenHeader();
167   }
170   function setEntries($list)
171   {
172     /********************
173       Variable init
174      ********************/
176     /* Create links */
177     $linkopen = "<a href='?plug=".$_GET['plug']."&amp;act=dep_open&amp;dep_id=%s'>%s</a>";
178     $editlink = "<a href='?plug=".$_GET['plug']."&amp;id=%s&amp;act=edit_entry'>%s</a>";
179     $userimg  = "<img class='center' src='plugins/groups/images/groups.png' alt='User'    title='%s'>";
180     $deviceimg  = "<img class='center' src='images/select_device.png' alt='A'  title='"._("Device")."'>";
181     $empty    = "<img class='center' src='images/empty.png' style='width:16px;height:16px;' alt=''>";
183     /* set Page header */
184     $action_col_size = 80;
185     if($this->parent->snapshotEnabled()){
186       $action_col_size += 38;
187     }
189     /********************
190       Attach objects
191      ********************/
193     foreach($list as $key => $val){
195       $ui       = get_userinfo();
196       $acl      = $ui->get_permissions($val['dn'],"devices/deviceGeneric");
197       $acl_all  = $ui->has_complete_category_acls($val['dn'],"devices") ;
199       $actions = "";
200       
201       /* Add copy & cut functionality */
202       $actions.= $this->parent->get_copypaste_action($val['dn'],"devices","deviceGeneric");
203       
204       $actions.= "<input class='center' type='image'
205         src='images/lists/edit.png' alt='"._("edit")."' name='device_edit_%KEY%' title='"._("Edit this entry")."'>";
207       $actions.= $this->parent->get_snapshot_action($val['dn'],$this->module);
209       /* Add delete button */
210       if(preg_match("/d/",$acl)){
211         $actions.= "<input class='center' type='image'
212           src='images/lists/trash.png' alt='"._("delete")."' name='device_del_%KEY%' title='"._("Delete this entry")."'>";
213       }else{
214         $actions.= "<img src='images/empty.png' alt='&nbsp;' class='center'>";
215       }
217       $title = "title='".preg_replace('/ /', '&nbsp;', @LDAP::fix($val['dn']))."'";
219       if(!isset($val['description'][0])){
220         $desc = "";
221       }else{
222         $desc = " - [ ".$val['description'][0]." ]";
223       }
225       /* Cutted objects should be displayed in light grey */
226       $display = $val['cn'][0].$desc;
227       if($this->parent->CopyPasteHandler){
228         foreach($this->parent->CopyPasteHandler->queue as $queue_key => $queue_data){
229           if($queue_data['dn'] == $val['dn']) {
230             $display = "<font color='#999999'>".$display."</font>";
231             break;
232           }
233         }
234       }
237       /* Create each field */
238       $field0 = array("string" => "<input type='checkbox' id='item_selected_".$key."' name='item_selected_".$key."'>" ,
239                       "attach" => "style='width:20px;'");
240       $field1 = array("string" => sprintf($deviceimg,$val['dn']), "attach" => "style='text-align:center;width:20px;'");
241       $field2 = array("string" => sprintf($editlink,$key,$display), "attach" => "style='' ".$title);
242       $field3 = array("string" => preg_replace("/%KEY%/", $key, $actions), "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'");
243       $this->AddElement(array($field0,$field1,$field2,$field3));
244     }
247     /* Create summary string for list footer */
248     $num_deps=0;
249     if(!$this->SubSearch){
250       $num_deps = count($this->Added_Departments);
251     }
252     $num_objs = count($list);
254     $num_obj_str = _("Number of listed devices");
255     $num_dep_str = _("Number of listed departments");
257     $str = "<img class='center' src='images/select_devices.png'
258               title='".$num_obj_str."' alt='".$num_obj_str."'>&nbsp;".$num_objs."&nbsp;&nbsp;&nbsp;&nbsp;";
259     $str.= "<img class='center' src='images/lists/folder.png'
260               title='".$num_dep_str."' alt='".$num_dep_str."'>&nbsp;".$num_deps."&nbsp;&nbsp;&nbsp;&nbsp;";
262     $this->set_List_Bottom_Info($str);
263   }
265   function Save()
266   {
267     MultiSelectWindow::Save();  
268   }
270   function save_object()
271   {
272     /* Save automatic created POSTs like regex, checkboxes */
273     MultiSelectWindow::save_object(); 
274   }
277 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
278 ?>