Code

181545c3ed6feae70b86fc7fddf90830c4a7c412
[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     $editlink = "<a href='?plug=".$_GET['plug']."&amp;id=%s&amp;act=edit_entry'>%s</a>";
178     $userimg  = "<img class='center' src='plugins/groups/images/groups.png' alt='User'    title='%s'>";
179     $deviceimg  = "<img class='center' src='images/select_device.png' alt='A'  title='"._("Device")."'>";
180     $empty    = "<img class='center' src='images/empty.png' style='width:16px;height:16px;' alt=''>";
182     /* set Page header */
183     $action_col_size = 80;
184     if($this->parent->snapshotEnabled()){
185       $action_col_size += 38;
186     }
188     /********************
189       Attach objects
190      ********************/
192     foreach($list as $key => $val){
194       $ui       = get_userinfo();
195       $acl      = $ui->get_permissions($val['dn'],"devices/deviceGeneric");
196       $acl_all  = $ui->has_complete_category_acls($val['dn'],"devices") ;
198       $actions = "";
199       
200       /* Add copy & cut functionality */
201       $actions.= $this->parent->get_copypaste_action($val['dn'],"devices","deviceGeneric");
202       
203       $actions.= "<input class='center' type='image'
204         src='images/lists/edit.png' alt='"._("edit")."' name='device_edit_%KEY%' title='"._("Edit this entry")."'>";
206       $actions.= $this->parent->get_snapshot_action($val['dn'],$this->module);
208       /* Add delete button */
209       if(preg_match("/d/",$acl)){
210         $actions.= "<input class='center' type='image'
211           src='images/lists/trash.png' alt='"._("delete")."' name='device_del_%KEY%' title='"._("Delete this entry")."'>";
212       }else{
213         $actions.= "<img src='images/empty.png' alt='&nbsp;' class='center'>";
214       }
216       $title = "title='".preg_replace('/ /', '&nbsp;', @LDAP::fix($val['dn']))."'";
218       if(!isset($val['description'][0])){
219         $desc = "";
220       }else{
221         $desc = " - [ ".$val['description'][0]." ]";
222       }
224       /* Cutted objects should be displayed in light grey */
225       $display = $val['cn'][0].$desc;
226       if($this->parent->CopyPasteHandler){
227         foreach($this->parent->CopyPasteHandler->queue as $queue_key => $queue_data){
228           if($queue_data['dn'] == $val['dn']) {
229             $display = "<font color='#999999'>".$display."</font>";
230             break;
231           }
232         }
233       }
236       /* Create each field */
237       $field0 = array("string" => "<input type='checkbox' id='item_selected_".$key."' name='item_selected_".$key."'>" ,
238                       "attach" => "style='width:20px;'");
239       $field1 = array("string" => sprintf($deviceimg,$val['dn']), "attach" => "style='text-align:center;width:20px;'");
240       $field2 = array("string" => sprintf($editlink,$key,$display), "attach" => "style='' ".$title);
241       $field3 = array("string" => preg_replace("/%KEY%/", $key, $actions), "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'");
242       $this->AddElement(array($field0,$field1,$field2,$field3));
243     }
246     /* Create summary string for list footer */
247     $num_deps=0;
248     if(!$this->SubSearch){
249       $num_deps = count($this->Added_Departments);
250     }
251     $num_objs = count($list);
253     $num_obj_str = _("Number of listed devices");
254     $num_dep_str = _("Number of listed departments");
256     $str = "<img class='center' src='images/select_devices.png'
257               title='".$num_obj_str."' alt='".$num_obj_str."'>&nbsp;".$num_objs."&nbsp;&nbsp;&nbsp;&nbsp;";
258     $str.= "<img class='center' src='images/lists/folder.png'
259               title='".$num_dep_str."' alt='".$num_dep_str."'>&nbsp;".$num_deps."&nbsp;&nbsp;&nbsp;&nbsp;";
261     $this->set_List_Bottom_Info($str);
262   }
264   function Save()
265   {
266     MultiSelectWindow::Save();  
267   }
269   function save_object()
270   {
271     /* Save automatic created POSTs like regex, checkboxes */
272     MultiSelectWindow::save_object(); 
273   }
276 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
277 ?>