Code

Starting move
[gosa.git] / gosa-core / plugins / admin / ogroups / class_divListOGroup.inc
1 <?php
3 class divListOGroup extends MultiSelectWindow
4 {
6   /* Current base */
7   var $selectedBase       = "";
8   var $departments        = array();
10   /* Regex */
11   var $Regex              = "*";
13   /* CheckBoxes, to change default values modify $this->AddCheckBox */
14   var $UserGroups         ;
15   var $GroupGroups        ;
16   var $ApplicationGroups  ;
17   var $DepartmentGroups   ; 
18   var $ServerGroups       ;
19   var $WorkstationGroups  ;
20   var $TerminalGroups     ;
21   var $PrinterGroups      ;
22   var $PhoneGroups        ;
23   
25   /* Subsearch checkbox */
26   var $SubSearch          ;
27   var $parent             ;
28   var $ui                 ;
30   function divListOGroup (&$config,$parent)
31   {
32     MultiSelectWindow::MultiSelectWindow($config, "OGroups", "ogroups");
33     
34     $this->parent       = $parent;
35     $this->ui           = get_userinfo();
37     /* Set list strings */
38     $this->SetTitle(_("List of object groups"));
39     $this->SetSummary(_("List of object groups"));
40     $this->EnableAplhabet(true);
42     /* Result page will look like a headpage */
43     $this->SetHeadpageMode();
44     $this->SetInformation(_("This menu allows you to add, edit or remove selected groups. You may want to use the range selector on top of the group listbox, when working with  a large number of groups."));
45   
46     /* Disable buttonsm */
47     $this->EnableCloseButton(false);
48     $this->EnableSaveButton (false);
50     /* Dynamic action col, depending on snapshot icons */
51     $action_col_size = 80;
52     if($this->parent->snapshotEnabled()){
53       $action_col_size += 38; 
54     }
56     /* Toggle all selected / deselected */
57     $chk = "<input type='checkbox' id='select_all' name='select_all'
58                onClick='toggle_all_(\"^item_selected_[0-9]*$\",\"select_all\");' >";
60     /* set Page header */
61     $this->AddHeader(array("string"=> $chk,          "attach"=>"style='width:20px;'"));
62     $this->AddHeader(array("string" => "&nbsp;", "attach" => "style='text-align:center;width:20px;'"));
63     $this->AddHeader(array("string" => _("Name of object groups")." / "._("Departments"), "attach" => "style=''"));
64     $this->AddHeader(array("string" => _("Properties"), "attach" => "style='width:136px;'"));
65     $this->AddHeader(array("string" => _("Actions"), "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'"));
67     /*                  Text        ,Value    ,Name         ,Is selected */
68     $this->AddCheckBox("UserGroups" ,       _("Select to see groups containing users")       , _("Show groups containing users"), true);
69     $this->AddCheckBox("GroupGroups" ,      _("Select to see groups containing groups")      , _("Show groups containing groups"), true);
70     $this->AddCheckBox("ApplicationGroups", _("Select to see groups containing applications"), _("Show groups containing applications"), true);
71     $this->AddCheckBox("DepartmentGroups" , _("Select to see groups containing departments") , _("Show groups containing departments"), true);
72     $this->AddCheckBox("ServerGroups" ,     _("Select to see groups containing servers")     , _("Show groups containing servers"), true);
73     $this->AddCheckBox("WorkstationGroups", _("Select to see groups containing workstations"), _("Show groups containing workstations"), true);
74     $this->AddCheckBox("TerminalGroups" ,   _("Select to see groups containing terminals")   , _("Show groups containing terminals"), true);
75     $this->AddCheckBox("PrinterGroups" ,    _("Select to see groups containing printer")     , _("Show groups containing printer"), true);
76     $this->AddCheckBox("PhoneGroups" ,      _("Select to see groups containing phones")      , _("Show groups containing phones"), true);
78     /* Add SubSearch checkbox */    
79     $this->AddCheckBox(SEPERATOR);
80     $this->AddCheckBox("SubSearch",  _("Select to search within subtrees"), _("Search in subtrees"), false);
82     /*                  Name                 ,Text                              ,Default  , Connect with alphabet  */
83     $this->AddRegex   ("Regex",     _("Regular expression for matching group names"), "*" , true);
84   }
87   function GenHeader()
88   {
89     /* Prepare departments,
90        which are shown in the listbox on top of the listbox
91      */
92     $options= "";
94     /* Get all departments within this subtree */
95     $ui= get_userinfo();
96     $first = "";
97     $found = FALSE;
98     $base = $this->config->current['BASE'];
100     /* Add base */
101     $tmp = array();
102     $tmp[] = array("dn"=>$this->config->current['BASE']);
103     $tmp=  array_merge($tmp,get_list("(&(|(ou=*)(description=*))(objectClass=gosaDepartment))", $this->module, $base,
104                     array("ou", "description"), GL_SIZELIMIT | GL_SUBSEARCH));
106     $deps = array();
107     foreach($tmp as $tm){
108       $deps[$tm['dn']] = $tm['dn'];
109     }
111     /* Load possible departments */
112     $ui= get_userinfo();
113     $tdeps= $ui->get_module_departments("ogroups");
114     $ids = $this->config->idepartments;
115     $first = "";
116     $found = FALSE;
117     foreach($ids as $dep => $name){
118       if(isset($deps[$dep]) && in_array_ics($dep, $tdeps)){
120         /* Keep first base dn in mind, we could need this
121          *  info if no valid base was found
122          */
123         if(empty($first)) {
124           $first = $dep['dn'];
125         }
127         $value = $ids[$dep];
128         if ($this->selectedBase == $dep){
129           $found = TRUE;
130           $options.= "<option selected='selected' value='".$dep."'>$value</option>";
131         } else {
132           $options.= "<option value='".$dep."'>$value</option>";
133         }
134       }
135     }
137     /* The currently used base is not visible with your acl setup.
138      * Set base to first useable base.
139      */
140     if(!$found){
141       $this->selectedBase = $first;
142     }
144     /* Add a seperator after displaying c&p and snapshot icons ? */
145     $add_sep = false;
146   
147     /* Get copy & paste icon */
148     $acls  = $ui->get_permissions($this->selectedBase,"ogroups/ogroup");
149     $acl_all= $ui->has_complete_category_acls($this->selectedBase,"ogroups");
150     $Copy_Paste ="";
151     if(preg_match("/(c.*w|w.*c)/",$acl_all) &&  $this->parent->CopyPasteHandler){
152       $Copy_Paste = $this->parent->CopyPasteHandler->generatePasteIcon();
153       $add_sep = true;
154     }
156     /* Add default header */
157     $listhead = MultiSelectWindow::get_default_header();
159   
160     /* Add department selector */
161     $listhead .= _("Base")."&nbsp;<select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
162       " <input class='center' type='image' src='images/list_submit.png' align='middle' 
163       title='"._("Submit department")."' name='submit_department' alt='"._("Submit")."'>&nbsp;";
166     /* Create Layers menu */
167     $s  = ".|"._("Actions")."|\n";
168     $s .= "..|<img src='images/list_new.png' alt='' border='0' class='center'>".
169       "&nbsp;"._("Create")."|\n";
171     /* Append create options */
172     if(preg_match("/c/",$acls)) {
173       $s.= "...|<input class='center' type='image' src='images/list_new_ogroup.png' alt=''>".
174         "&nbsp;"._("Object group")."|group_new|\n";
175     }
177     /* Multiple options */
178     $s.= "..|---|\n";
179 #    $s.= "..|<img src='images/edit.png' alt='' border='0' class='center'>".
180 #      "&nbsp;"._("Edit")."|"."multiple_edit|\n";
182     $s.= "..|<img src='images/edittrash.png' alt='' border='0' class='center'>".
183       "&nbsp;"._("Remove")."|"."remove_multiple_ogroups/|\n";
185     /* Add multiple copy & cut icons */
186     if(is_object($this->parent->CopyPasteHandler) && preg_match("/(c.*w|w.*c)/",$acl_all)){
187       $s.= "..|---|\n";
188       $s.= "..|<img src='images/editcopy.png' alt='' border='0' class='center'>".
189         "&nbsp;"._("Copy")."|"."multiple_copy_systems|\n";
190       $s.= "..|<img src='images/editcut.png' alt='' border='0' class='center'>".
191         "&nbsp;"._("Cut")."|"."multiple_cut_systems|\n";
193       if($this->parent->CopyPasteHandler->entries_queued()){
194         $img = "<img border='0' class='center' src='images/editpaste.png' alt=''>";
195         $s.="..|".$img."&nbsp;"._("Paste")."|editPaste|\n";
196       }else{
197         $img = "<img border='0' class='center' src='images/cant_editpaste.png' alt=''>";
198         $s.="..|".$img."&nbsp;"._("Paste")."\n";
199       }
200     }
202     /* Add snapshot icons */
203     if(preg_match("/(c.*w|w.*c)/",$acl_all)){
204       $s .= "..|---|\n";
205       $s .= $this->get_snapshot_header(TRUE);
206     }
208     $this->SetDropDownHeaderMenu($s);
209     $this->SetListHeader($listhead);
210   }
212   function execute()
213   {
214     $this->ClearElementsList();
215     $this->GenHeader();
216   }
218   function setEntries($list)
219   {
220     /* Add Copy & Paste buttons if copy&paste is enabled
221      */
222     // Defining Links
223     $linkopen = "<a href='?plug=".$_GET['plug']."&amp;act=dep_open&amp;dep_id=%s'>%s</a>";
224     $editlink = "<a href='?plug=".$_GET['plug']."&amp;id=%s&amp;act=edit_entry'>%s</a>";
225     $userimg  = "<img class='center' src='images/select_groups.png' alt='User'    title='%s'>";
226     $mailimg  = "<img class='center' src='images/mailto.png'             alt='M'  title='"._("Mail")   ."'>";
227     $empty    = "<img class='center' src='images/empty.png' style='width:16px;height:16px;' alt=''>";
229     /* Dynamic action col, depending on snapshot icons */
230     $action_col_size = 80;
231     if($this->parent->snapshotEnabled()){
232       $action_col_size += 38; 
233     }
234   
235     $ui = get_userinfo();
237     // Assigning ogroups
238     foreach($list as $key => $val){
240       /* Create action icons */
241       $actions= "";
242       $acl_all= $ui->has_complete_category_acls($val['dn'],"ogroups");
243       if(($this->parent->CopyPasteHandler) && preg_match("/(c.*w|w.*c)/",$acl_all)){
244         $actions.= "<input class='center' type='image'
245           src='images/editcut.png' alt='"._("cut")."' name='cut_%KEY%' title='"._("Cut this entry")."'>&nbsp;";
246         $actions.= "<input class='center' type='image'
247           src='images/editcopy.png' alt='"._("copy")."' name='copy_%KEY%' title='"._("Copy this entry")."'>&nbsp;";
248       }
250       $actions.= "<input class='center' type='image'
251         src='images/edit.png' alt='"._("edit")."' name='group_edit_%KEY%' title='"._("Edit this entry")."'>";
252     
253       if(preg_match("/(c.*w|w.*c)/", $acl_all)){
254         $actions.= $this->GetSnapShotActions($val['dn']);
255       }
257       if(preg_match("/d/",$ui->get_permissions($val['dn'],"ogroups/ogroup"))) {
258         $actions.= "<input class='center' type='image'
259           src='images/edittrash.png' alt='"._("delete")."' name='group_del_%KEY%' title='"._("Delete this entry")."'>";
260       }else{
261         $actions.= "<img class='center' src='images/empty.png' alt='&nbsp;'
262           title='"._("You are not allowed to remove this entry.")."'>";
263       }
266       if(isset($val['mail'])){
267         $mail = $mailimg;
268       }else{
269         $mail = $empty;
270       }
271       $title = "title='".preg_replace('/ /', '&nbsp;', @LDAP::fix($val['dn']))."'";
272       if(!isset($val['description'][0])){
273         $desc = "";
274       }else{
275         $desc = " - [ ".$val['description'][0]." ]";
276       }
278       /* Cutted objects should be displayed in light grey */
279       $display = $val['cn'][0].$desc;
280       if($this->parent->CopyPasteHandler){
281         foreach($this->parent->CopyPasteHandler->queue as $queue_key => $queue_data){
282           if($queue_data['dn'] == $val['dn']) {
283             $display = "<font color='#999999'>".$display."</font>";
284             break;
285           }
286         }
287       }
289       /* Create each field */
290       $field0 = array("string" => "<input type='checkbox' id='item_selected_".$key."' name='item_selected_".$key."'>" ,
291                       "attach" => "style='width:20px;'");
292       $field1 = array("string" => "<img src='images/list_ogroup.png' alt='"._("Object group")."' ".$title.">", "attach" => "style='text-align:center;width: 20px;'");
293       $field2 = array("string" => sprintf($editlink,$key,$display), "attach" => "style='' ".$title);
294       $field3 = array("string" => preg_replace("/%KEY/", $key, $this->parent->convert_list($val))."&nbsp;".$mail, "attach" => "style='width:136px;'");
295       $field4 = array("string" => preg_replace("/%KEY%/", $key, $actions), "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'");
297       $this->AddElement(array($field0,$field1,$field2,$field3,$field4));
298     }
299    
300  
301     /* Create summary string for list footer */
302     $num_deps=0;
303     if(!$this->SubSearch){
304       $num_deps = count($this->Added_Departments);
305     }
306     $num_objs = count($list);
308     $num_obj_str = _("Number of listed object groups");
309     $num_dep_str = _("Number of listed departments");
311     $str = "<img class='center' src='images/select_ogroup.png'
312               title='".$num_obj_str."' alt='".$num_obj_str."'>&nbsp;".$num_objs."&nbsp;&nbsp;&nbsp;&nbsp;";
313     $str.= "<img class='center' src='images/folder.png'
314               title='".$num_dep_str."' alt='".$num_dep_str."'>&nbsp;".$num_deps."&nbsp;&nbsp;&nbsp;&nbsp;";
316     $this->set_List_Bottom_Info($str);
317   }
319   function Save()
320   {
321     MultiSelectWindow :: Save();  
322   }
324   function save_object()
325   {
326     /* Save automatic created POSTs like regex, checkboxes */
327     MultiSelectWindow::save_object();   
328   }
330 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
331 ?>