Code

Updated divlists to include the ldap base
[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);
41    /* Toggle all selected / deselected */
42     $chk = "<input type='checkbox' id='select_all' name='select_all'
43                onClick='toggle_all_(\"^item_selected_[a-zA-Z0-9\=]*$\",\"select_all\");' >";
45     /* set Page header */
46     $this->AddHeader(array("string"=> $chk,          "attach"=>"style='width:20px;'"));
47     $this->AddHeader(array("string" => "&nbsp;", "attach" => "style='text-align:center;width:20px;'"));
48     $this->AddHeader(array("string"=>_("Department name"), "attach" => "style=''"));
49     $this->AddHeader(array("string" =>_("Actions"), "attach" => "style='width:60px;border-right:0px;text-align:right;'"));
52     /* Add SubSearch checkbox */    
53     $this->AddCheckBox("SubSearch",  _("Select to search within subtrees"), _("Ignore subtrees"), false);
55     /*                  Name                 ,Text                              ,Default  , Connect with alphabet  */
56     $this->AddRegex   ("Regex",     _("Regular expression for matching department names"), "*" , true);
57   }
60   function GenHeader()
61   {
62     /* Prepare departments,
63        which are shown in the listbox on top of the listbox
64     */
65     $options= "";
67     /* Get all departments within this subtree */
68     $ui= get_userinfo();
69     $first = "";
70     $found = FALSE;
71     $base = $this->config->current['BASE'];
72     $deps= get_list("(&(|(ou=*)(description=*))(objectClass=gosaDepartment))", $this->module, $base,
73                     array("ou", "description"), GL_SIZELIMIT | GL_SUBSEARCH);
75     /* Add base */
76     $deps[] = array("dn"=>$this->config->current['BASE']);
78     /* Load possible departments */
79     $ui= get_userinfo();
80     $tdeps= $ui->get_module_departments("department");
82     $ids = $this->config->idepartments;
84     foreach($deps as $dep){
85       if(isset($ids[$dep['dn']]) && in_array_ics($dep['dn'], $tdeps)){
87         /* Keep first base dn in mind, we could need this
88          *  info if no valid base was found
89          */
90         if(empty($first)) {
91           $first = $dep['dn'];
92         }
94         $value = $ids[$dep['dn']];
95         if ($this->selectedBase == $dep['dn']){
96           $options.= "<option selected='selected' value='".$dep['dn']."'>$value</option>";
97         } else {
98           $options.= "<option value='".$dep['dn']."'>$value</option>";
99         }
100       }
101     }
103     /* The currently used base is not visible with your acl setup.
104      * Set base to first useable base.
105      */
106     if(!$found){
107       $this->selectedBase = $first;
108     }
110     /* Generate list head */
111     $ui = get_userinfo();
112     $acl = $ui->get_permissions("ou=dummy,".$this->selectedBase  ,"department/department");
113       
114     /* Add default header */
115     $listhead = MultiSelectWindow::get_default_header();
117     if(preg_match("/c/",$acl)){
118       $listhead .=  " <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;".
119         " <input class='center' type='image' src='images/list_new_department.png' ".
120         "   align='middle' alt='"._("Create new department")."' name='dep_new'>&nbsp; ";
121     }
122   
124     $listhead .= " <img class='center' src='images/list_seperator.png' align='middle' ".
125       " alt='' height='16' width='1'>&nbsp;".
126       " "._("Base")."&nbsp;<select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
127       " <input class='center' type='image' src='images/list_submit.png' align='middle' ".
128       "   title='"._("Submit department")."' name='submit_department' alt='"._("Submit")."'>&nbsp;";
130     /* Multiple options */
131     $listhead .= "&nbsp;<input class='center' type='image' align='middle' src='images/edittrash.png'
132         title='"._("Remove selected departments")."' alt='"._("Remove departments")."' name='remove_multiple_departments'>&nbsp;";
134     $listhead .="</div>";;
136     $this->SetListHeader($listhead);
137   }
139   function execute()
140   {
141     $this->ClearElementsList();
142     $this->GenHeader();
143   }
145   function setEntries($list)
146   {
147     $linkopen = "<a href='?plug=".$_GET['plug']."&amp;act=dep_open&amp;dep_id=%s'>%s</a>";
149     $ui = get_userinfo();
150     foreach($list as $key => $val) {
152       $actions= "";      
154       $acl = $ui->get_permissions($this->config->departments[$key] ,"department/department");
155       if(preg_match("/r/",$acl)){
156         $actions.= "<input class='center' type='image' src='images/edit.png'
157           alt='"._("edit")."'   name='dep_edit_%KEY%' title='"._("Edit this entry")."'>";
158       }
160       if(preg_match("/c/",$acl)){
161         $actions.= "<input class='center' type='image' src='images/edittrash.png'
162           alt='"._("delete")."'   name='dep_del_%KEY%' title='"._("Delete this entry")."'>";
163       }
165       if(!isset($this->config->departments[trim($key)])){
166         $this->config->departments[trim($key)]="";
167       }
169       $non_empty="";
170       $keys= str_replace("/","\/",$key);
171       foreach($this->config->departments as $keyd=>$vald ){
172         if(preg_match("/".$keys."\/.*/",$keyd)){
173           $non_empty="full";
174         }
175       }
177       $title = preg_replace('/ /', '&nbsp;', @LDAP::fix($this->config->departments[$key]));
179       if($val == "."){
180         $field01 = array("string" => "&nbsp;",
181             "attach" => "style='width:20px;'");
182       }else{
183         $field01 = array("string" => "<input type='checkbox' id='item_selected_".base64_encode($key)."' 
184             name='item_selected_".base64_encode($key)."'>" ,
185             "attach" => "style='width:20px;'");
186       }
188       $field0 = array("string" => "<img src='images/".$non_empty."folder.png' title='"._("department")."' alt='department'>", "attach" => "style='text-align:center;width:20px;'");
189       $field1 = array("string" => sprintf($linkopen,base64_encode($key),$val), "attach" => "style='' title='".$title."'");
190       $field2 = array("string" => preg_replace("/%KEY%/", base64_encode($key), $actions), "attach" => "style='width:60px;border-right:0px;text-align:
191           right;'");
193       $this->AddElement( array($field01,$field0,$field1,$field2));
194     }
195   }
197   function Save()
198   {
199     MultiSelectWindow::Save();
200   }
202   function save_object()
203   {
204     /* Save automatic created POSTs like regex, checkboxes */
205     MultiSelectWindow::save_object();   
206   }
208 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
209 ?>