Code

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