Code

Updated divlists.
[gosa.git] / 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"), _("Ignore 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'];
99     $deps= get_list("(&(|(ou=*)(description=*))(objectClass=gosaDepartment))", $this->module, $base,
100                     array("ou", "description"), GL_SIZELIMIT | GL_SUBSEARCH);
102     /* Load possible departments */
103     $ui= get_userinfo();
104     $tdeps= $ui->get_module_departments("ogroups");
106     $ids = $this->config->idepartments;
108     foreach($deps as $dep){
109       if(isset($ids[$dep['dn']]) && in_array_ics($dep['dn'], $tdeps)){
111         /* Keep first base dn in mind, we could need this
112          *  info if no valid base was found
113          */
114         if(empty($first)) {
115           $first = $dep['dn'];
116         }
117   
118         $value = $ids[$dep['dn']];
119         if ($this->selectedBase == $dep['dn']){
120           $options.= "<option selected='selected' value='".$dep['dn']."'>$value</option>";
121         } else {
122           $options.= "<option value='".$dep['dn']."'>$value</option>";
123         }
124       }
125     }
127     /* The currently used base is not visible with your acl setup.
128      * Set base to first useable base.
129      */
130     if(!$found){
131       $this->selectedBase = $first;
132     }
134     /* Add a seperator after displaying c&p and snapshot icons ? */
135     $add_sep = false;
136   
137     /* Get copy & paste icon */
138     $acls  = $ui->get_permissions($this->selectedBase,"ogroups/ogroup");
139     $acl_all= $ui->has_complete_category_acls($this->selectedBase,"ogroups");
140     $Copy_Paste ="";
141     if(preg_match("/(c.*w|w.*c)/",$acl_all) &&  $this->parent->CopyPasteHandler){
142       $Copy_Paste = $this->parent->CopyPasteHandler->generatePasteIcon();
143       $add_sep = true;
144     }
146     /* Add default header */
147     $listhead = MultiSelectWindow::get_default_header();
149     /* Add snapshot restore icons */ 
150     if(preg_match("/(c.*w|w.*c)/",$acl_all)){
151       $listhead .= $this->get_snapshot_header($this->selectedBase);
152       $add_sep = true;
153     }
155     /* Create new ogroup icon */
156     if(preg_match("/c/",$acls)) {
157       $listhead .=" <input class='center' type='image' align='middle' src='images/list_new_ogroup.png' 
158         title='"._("Create new object group")."' alt='"._("new")."' name='group_new'>";
159       $add_sep = true;
160     }
162     /* Add copy & paste icon */
163     $listhead .=  $Copy_Paste;
164     
165     /* Should we add a seperator here ? */
166     if($add_sep){
167       $listhead .=" <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;";
168     }
169   
170     /* Add department selector */
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;";
175     /* Multiple options */
176     $listhead .= "&nbsp;<input class='center' type='image' align='middle' src='images/edittrash.png'
177         title='"._("Remove selected object groups")."' alt='"._("Remove object groups")."' name='remove_multiple_ogroups'>&nbsp;";
179     $listhead .="</div>";
181     $this->SetListHeader($listhead);
182   }
184   function execute()
185   {
186     $this->ClearElementsList();
187     $this->GenHeader();
188   }
190   function setEntries($list)
191   {
192     /* Add Copy & Paste buttons if copy&paste is enabled
193      */
194     // Defining Links
195     $linkopen = "<a href='?plug=".$_GET['plug']."&amp;act=dep_open&amp;dep_id=%s'>%s</a>";
196     $editlink = "<a href='?plug=".$_GET['plug']."&amp;id=%s&amp;act=edit_entry'>%s</a>";
197     $userimg  = "<img class='center' src='images/select_groups.png' alt='User'    title='%s'>";
198     $mailimg  = "<img class='center' src='images/mailto.png'             alt='M'  title='"._("Mail")   ."'>";
199     $empty    = "<img class='center' src='images/empty.png' style='width:16px;height:16px;' alt=''>";
201     /* Dynamic action col, depending on snapshot icons */
202     $action_col_size = 80;
203     if($this->parent->snapshotEnabled()){
204       $action_col_size += 38; 
205     }
206   
207     $ui = get_userinfo();
209     // Assigning ogroups
210     foreach($list as $key => $val){
212       /* Create action icons */
213       $actions= "";
214       $acl_all= $ui->has_complete_category_acls($val['dn'],"ogroups");
215       if(($this->parent->CopyPasteHandler) && preg_match("/(c.*w|w.*c)/",$acl_all)){
216         $actions.= "<input class='center' type='image'
217           src='images/editcut.png' alt='"._("cut")."' name='cut_%KEY%' title='"._("Cut this entry")."'>&nbsp;";
218         $actions.= "<input class='center' type='image'
219           src='images/editcopy.png' alt='"._("copy")."' name='copy_%KEY%' title='"._("Copy this entry")."'>&nbsp;";
220       }
222       $actions.= "<input class='center' type='image'
223         src='images/edit.png' alt='"._("edit")."' name='group_edit_%KEY%' title='"._("Edit this entry")."'>";
224     
225       if(preg_match("/(c.*w|w.*c)/", $acl_all)){
226         $actions.= $this->GetSnapShotActions($val['dn']);
227       }
229       if(preg_match("/d/",$ui->get_permissions($val['dn'],"ogroups/ogroup"))) {
230         $actions.= "<input class='center' type='image'
231           src='images/edittrash.png' alt='"._("delete")."' name='group_del_%KEY%' title='"._("Delete this entry")."'>";
232       }else{
233         $actions.= "<img class='center' src='images/empty.png' alt='&nbsp;'
234           title='"._("You are not allowed to remove this entry.")."'>";
235       }
238       if(isset($val['mail'])){
239         $mail = $mailimg;
240       }else{
241         $mail = $empty;
242       }
243       $title = "title='".preg_replace('/ /', '&nbsp;', @LDAP::fix($val['dn']))."'";
244       if(!isset($val['description'][0])){
245         $desc = "";
246       }else{
247         $desc = " - [ ".$val['description'][0]." ]";
248       }
249       /* Create each field */
250       $field0 = array("string" => "<input type='checkbox' id='item_selected_".$key."' name='item_selected_".$key."'>" ,
251                       "attach" => "style='width:20px;'");
252       $field1 = array("string" => "<img src='images/list_ogroup.png' alt='"._("Object group")."' ".$title.">", "attach" => "style='text-align:center;width: 20px;'");
253       $field2 = array("string" => sprintf($editlink,$key,($val['cn']['0'].$desc)), "attach" => "style='' ".$title);
254       $field3 = array("string" => preg_replace("/%KEY/", $key, $this->parent->convert_list($val))."&nbsp;".$mail, "attach" => "style='width:136px;'");
255       $field4 = array("string" => preg_replace("/%KEY%/", $key, $actions), "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'");
257       $this->AddElement(array($field0,$field1,$field2,$field3,$field4));
258     }
259   }
261   function Save()
262   {
263     MultiSelectWindow :: Save();  
264   }
266   function save_object()
267   {
268     /* Save automatic created POSTs like regex, checkboxes */
269     MultiSelectWindow::save_object();   
270   }
272 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
273 ?>