Code

Fixed baseSelect options
[gosa.git] / plugins / admin / departments / class_divListDepartment.inc
1 <?php
3 class divListDepartment extends MultiSelectWindow
4 {
6   /* Current base */
7   var $selectedBase       = "";
8   var $departments        = array();
10   /* Regex */
11   var $Regex              = "*";
12   
13   /* Subsearch checkbox */
14   var $SubSearch          = false;
16   var $parent             ;
17   var $ui                 ;
19   function divListDepartment ($config,$parent)
20   {
21     MultiSelectWindow::MultiSelectWindow($config, "Department", "department");
22     
23     $this->parent       = $parent;
24     $this->ui           = get_userinfo();
26     /* Set list strings */
27     $this->SetTitle(_("List of departments"));
28     $this->SetSummary(_("List of departments"));
29     $this->EnableAplhabet   (true);
31     /* Result page will look like a headpage */
32     $this->SetHeadpageMode();
33     $this->SetInformation(_("This menu allows you to create, delete and edit selected departments. Having a large number of departments, you might prefer the range selectors on top of the department list."));
34   
35     /* Disable buttonsm */
36     $this->EnableCloseButton(false);
37     $this->EnableSaveButton (false);
39     /* set Page header */
40     $this->AddHeader(array("string" => "&nbsp;", "attach" => "style='text-align:center;width:20px;'"));
41     $this->AddHeader(array("string"=>_("Department name"), "attach" => "style=''"));
42     $this->AddHeader(array("string" =>_("Actions"), "attach" => "style='width:60px;border-right:0px;text-align:right;'"));
45     /* Add SubSearch checkbox */    
46     $this->AddCheckBox("SubSearch",  _("Select to search within subtrees"), _("Ignore subtrees"), false);
48     /*                  Name                 ,Text                              ,Default  , Connect with alphabet  */
49     $this->AddRegex   ("Regex",     _("Regular expression for matching department names"), "*" , true);
50   }
53   function GenHeader()
54   {
55     /* Prepare departments,
56        which are shown in the listbox on top of the listbox
57     */
58     $options= "";
60     /* Get all departments within this subtree */
61     $base = $this->config->current['BASE'];
62     $deps= get_list("(&(|(ou=*)(description=*))(objectClass=gosaDepartment))", $this->module, $base,
63                     array("ou", "description"), GL_SIZELIMIT | GL_SUBSEARCH);
65     /* Load possible departments */
66     $ui= get_userinfo();
67     $tdeps= $ui->get_module_departments("department");
69     $ids = $this->config->idepartments;
71     foreach($deps as $dep){
72       if(isset($ids[$dep['dn']]) && in_array_ics($dep['dn'], $tdeps)){
74         $value = $ids[$dep['dn']];
75         if ($this->selectedBase == $dep['dn']){
76           $options.= "<option selected='selected' value='".$dep['dn']."'>$value</option>";
77         } else {
78           $options.= "<option value='".$dep['dn']."'>$value</option>";
79         }
80       }
81     }
84     /* Generate list head */
85     $ui = get_userinfo();
86     $acl = $ui->get_permissions("ou=dummy,".$this->selectedBase  ,"department/department");
88     $listhead = "<div style='background:#F0F0F9;padding:5px;'>".
89       " <input type='image' class='center' src='images/list_root.png' align='middle' ".
90       "   title='"._("Go to root department")."' name='dep_root' alt='".       _("Root")."'>&nbsp;".
91       " <input type='image' class='center' src='images/list_up.png' align='middle' ".
92       "   title='"._("Go up one department")."' name='dep_back' alt='"._("Up").  "'>&nbsp;".
93       " <input type='image' class='center' src='images/list_home.png' align='middle' ".
94       "   title='"._("Go to users home department")."' name='dep_home' alt='". _("Home")."'>&nbsp;".
95       " <input class='center' type='image' src='images/list_reload.png' align='middle' ".
96       "   title='"._("Reload list")."' name='submit_department' alt='".      _("Submit")."'>&nbsp;";
97       
98     if(preg_match("/c/",$acl)){
99       $listhead .=  " <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;".
100         " <input class='center' type='image' src='images/list_new_department.png' ".
101         "   align='middle' alt='"._("Create new department")."' name='dep_new'>&nbsp; ";
102     }
103   
105     $listhead .= $acl." <img class='center' src='images/list_seperator.png' align='middle' ".
106       " alt='' height='16' width='1'>&nbsp;".
107       " "._("Base")."&nbsp;<select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
108       " <input class='center' type='image' src='images/list_submit.png' align='middle' ".
109       "   title='"._("Submit department")."' name='submit_department' alt='"._("Submit")."'>&nbsp;".
110       "</div>";
112     $this->SetListHeader($listhead);
113   }
115   function execute()
116   {
117     $this->ClearElementsList();
118     $this->GenHeader();
119   }
121   function setEntries($list)
122   {
123     $linkopen = "<a href='?plug=".$_GET['plug']."&amp;act=dep_open&amp;dep_id=%s'>%s</a>";
125     $ui = get_userinfo();
126     foreach($list as $key => $val) {
128       $actions= "";      
130       $acl = $ui->get_permissions($this->config->departments[$key] ,"department/department");
131       if(preg_match("/r/",$acl)){
132         $actions.= "<input class='center' type='image' src='images/edit.png'
133           alt='"._("edit")."'   name='dep_edit_%KEY%' title='"._("Edit this entry")."'>";
134       }
136       if(preg_match("/c/",$acl)){
137         $actions.= "<input class='center' type='image' src='images/edittrash.png'
138           alt='"._("delete")."'   name='dep_del_%KEY%' title='"._("Delete this entry")."'>";
139       }
141       if(!isset($this->config->departments[trim($key)])){
142         $this->config->departments[trim($key)]="";
143       }
145       $non_empty="";
146       $keys= str_replace("/","\/",$key);
147       foreach($this->config->departments as $keyd=>$vald ){
148         if(preg_match("/".$keys."\/.*/",$keyd)){
149           $non_empty="full";
150         }
151       }
153       $title = preg_replace('/ /', '&nbsp;', @LDAP::fix($this->config->departments[$key]));
154       $field0 = array("string" => "<img src='images/".$non_empty."folder.png' title='"._("department")."' alt='department'>", "attach" => "style='text-align:center;width:20px;'");
155       $field1 = array("string" => sprintf($linkopen,base64_encode($key),$val), "attach" => "style='' title='".$title."'");
156       $field2 = array("string" => preg_replace("/%KEY%/", base64_encode($key), $actions), "attach" => "style='width:60px;border-right:0px;text-align:
157           right;'");
159       $this->AddElement( array($field0,$field1,$field2));
160     }
161   }
163   function Save()
164   {
165     MultiSelectWindow::Save();
166   }
168   function save_object()
169   {
170     /* Save automatic created POSTs like regex, checkboxes */
171     MultiSelectWindow::save_object();   
172   }
174 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
175 ?>