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");
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);
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" => " ", "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")." <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")."'> ";
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 " "._("Create")."|\n";
141 $s.= "...|<input class='center' type='image' src='images/list_new_device.png' alt=''>".
142 " "._("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 " "._("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);
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']."&act=dep_open&dep_id=%s'>%s</a>";
178 $editlink = "<a href='?plug=".$_GET['plug']."&id=%s&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 if($ui->is_cutable($val['dn'],"devices","deviceGeneric") && $this->parent->CopyPasteHandler){
201 $actions .= "<input class='center' type='image'
202 src='images/lists/cut.png' alt='"._("cut")."' name='cut_%KEY%' title='"._("Cut this entry")."'> ";
203 }else{
204 $actions.="<img src='images/empty.png' alt=' ' class='center'> ";
205 }
207 if($ui->is_copyable($val['dn'],"devices","deviceGeneric") && $this->parent->CopyPasteHandler){
208 $actions.= "<input class='center' type='image'
209 src='images/lists/copy.png' alt='"._("copy")."' name='copy_%KEY%' title='"._("Copy this entry")."'> ";
210 }else{
211 $actions.="<img src='images/empty.png' alt=' ' class='center'> ";
212 }
214 $actions.= "<input class='center' type='image'
215 src='images/lists/edit.png' alt='"._("edit")."' name='device_edit_%KEY%' title='"._("Edit this entry")."'>";
217 $actions.= $this->parent->get_snapshot_action($val['dn'],$this->module);
219 /* Add delete button */
220 if(preg_match("/d/",$acl)){
221 $actions.= "<input class='center' type='image'
222 src='images/lists/trash.png' alt='"._("delete")."' name='device_del_%KEY%' title='"._("Delete this entry")."'>";
223 }else{
224 $actions.= "<img src='images/empty.png' alt=' ' class='center'>";
225 }
227 $title = "title='".preg_replace('/ /', ' ', @LDAP::fix($val['dn']))."'";
229 if(!isset($val['description'][0])){
230 $desc = "";
231 }else{
232 $desc = " - [ ".$val['description'][0]." ]";
233 }
235 /* Cutted objects should be displayed in light grey */
236 $display = $val['cn'][0].$desc;
237 if($this->parent->CopyPasteHandler){
238 foreach($this->parent->CopyPasteHandler->queue as $queue_key => $queue_data){
239 if($queue_data['dn'] == $val['dn']) {
240 $display = "<font color='#999999'>".$display."</font>";
241 break;
242 }
243 }
244 }
247 /* Create each field */
248 $field0 = array("string" => "<input type='checkbox' id='item_selected_".$key."' name='item_selected_".$key."'>" ,
249 "attach" => "style='width:20px;'");
250 $field1 = array("string" => sprintf($deviceimg,$val['dn']), "attach" => "style='text-align:center;width:20px;'");
251 $field2 = array("string" => sprintf($editlink,$key,$display), "attach" => "style='' ".$title);
252 $field3 = array("string" => preg_replace("/%KEY%/", $key, $actions), "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'");
253 $this->AddElement(array($field0,$field1,$field2,$field3));
254 }
257 /* Create summary string for list footer */
258 $num_deps=0;
259 if(!$this->SubSearch){
260 $num_deps = count($this->Added_Departments);
261 }
262 $num_objs = count($list);
264 $num_obj_str = _("Number of listed devices");
265 $num_dep_str = _("Number of listed departments");
267 $str = "<img class='center' src='images/select_devices.png'
268 title='".$num_obj_str."' alt='".$num_obj_str."'> ".$num_objs." ";
269 $str.= "<img class='center' src='images/lists/folder.png'
270 title='".$num_dep_str."' alt='".$num_dep_str."'> ".$num_deps." ";
272 $this->set_List_Bottom_Info($str);
273 }
275 function Save()
276 {
277 MultiSelectWindow::Save();
278 }
280 function save_object()
281 {
282 /* Save automatic created POSTs like regex, checkboxes */
283 MultiSelectWindow::save_object();
284 }
286 }
287 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
288 ?>