Code

Added acls to glpiAccount
[gosa.git] / plugins / admin / mimetypes / class_divListMimeTypes.inc
1 <?php
3 class divListMimeTypes extends MultiSelectWindow
4 {
5   /* Current base */
6   var $selectedBase       = "";
7   var $selectedRelease    = "main";
8   var $AvailableReleases  = array();
9   var $departments        = array();
10   var $parent               ;
11   var $ui                   ;
13   /* Regex */
14   var $Regex              = "*";
16   /* Subsearch checkbox */
17   var $SubSearch;
19   /* These vars should be saved too */
20   var $SaveAdditionalVars = array("selectedRelease");
23   function divListMimeTypes ($config,$parent)
24   {
25     /* Create divlist and setup */
26     MultiSelectWindow::MultiSelectWindow($config, "Mimetypes", "mimetypes");
27   
28     /* initialize required attributes */ 
29     $this->selectedRelease  = "ou=mime,".$_SESSION['CurrentMainBase'];
30     $this->parent           = $parent;
31     $this->ui               = get_userinfo();
32     $this->AvailableReleases= $this->parent->getReleases($this->selectedBase);
34     /* Set list strings */
35     $this->SetTitle       (_("List of defined mime types"));
36     $this->SetSummary     (_("List of defined mime types"));
37     $this->SetInformation (_("This menu allows you to add, edit and remove selected mime types. You may want to use the range selector on top of the mime type listbox, when working with a large number of mime types."));
39     /* Result page will look like a headpage */
40     $this->SetHeadpageMode();
41     $this->EnableAplhabet(true);
42   
43     /* Disable buttonsm */
44     $this->EnableCloseButton(false);
45     $this->EnableSaveButton (false);
47     /* set Page header */
48     $action_col_size = 70;
49     if($this->parent->snapshotEnabled()){
50       $action_col_size += 38;
51     }
53     /* set Page header */
54     $this->AddHeader(array("string" => "&nbsp;",                "attach" => "style='text-align:center;width:20px;'"));
55     $this->AddHeader(array("string" => _("Mime type name")." / "._("Department"), "attach" => "style=''"));
56     $this->AddHeader(array("string" => _("Actions"),            "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'"));
58     /* Add SubSearch checkbox */
59     $this->AddCheckBox("SubSearch",  _("Select to search within subtrees"), _("Ignore subtrees"), false);
61     /*                  Name                 ,Text                              ,Default  , Connect with alphabet  */
62     $this->AddRegex   ("Regex",     _("Display mime types matching"),"*" , true);
63   }
66   /* This function allows us to add a user defined filter part at position $position*/
67   function AddUserBoxToFilter($position)
68   {
69     $str = "";
70     if(($position  == 2) && ($this->parent->IsReleaseManagementActivated($this->config))){
71       $smarty = get_smarty();
72       $smarty->assign("selectedRelease",$this->selectedRelease);
73       $smarty->assign("branchimage","images/branch.png");
74       $smarty->assign("releases",$this->AvailableReleases);
75       $str = $smarty->fetch(get_template_path('release_select.tpl', TRUE,dirname(__FILE__)));
76     }
77     return($str);
78   }
81   /* Create list header, with create / copy & paste etc*/
82   function GenHeader()
83   {
84     /* Prepare departments,
85        which are shown in the listbox on top of the listbox
86      */
87     $options= "";
88     foreach ($this->config->idepartments as $key => $value){
89       if ($this->selectedBase == $key){
90         $options.= "<option selected='selected' value='$key'>$value</option>";
91       } else {
92         $options.= "<option value='$key'>$value</option>";
93       }
94     }
96     /* Get copy & paste icon */
97     if($this->parent->CopyPasteHandler){
98       $Copy_Paste = $this->parent->CopyPasteHandler->generatePasteIcon();
99     }else{
100       $Copy_Paste ="";
101     }
103     /* Create listhead, it will be shown on top of the divlist.
104      * It provides general navigation and object creation
105      */
106     $ui = get_userinfo();
107     $acl = $ui->get_permissions("cn=dummy,ou=mimetypes,".$this->selectedBase,"mimetypes/mimetype");
109     $listhead = "<div style='background:#F0F0F9;padding:5px;'>".
110       " <input class='center' type='image' src='images/list_root.png' align='middle' ".
111       "title='"._("Go to root department")."' name='dep_root' alt='"._("Root")."'>&nbsp;".
112       " <input class='center' type='image' align='middle' src='images/list_back.png' ".
113       "title='"._("Go up one department")."' alt='"._("Up")."' name='dep_back'>&nbsp;".
114       " <input class='center' type='image' align='middle' src='images/list_home.png' ".
115       "title='"._("Go to users department")."' alt='"._("Home")."' name='dep_home'>&nbsp;".
116       " <input class='center' type='image' src='images/list_reload.png' align='middle' ".
117       "title='"._("Reload list")."' name='submit_department' alt='"._("Submit")."'>&nbsp;".
118       " <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;";
119     $listhead .= $this->get_snapshot_header($this->selectedBase);
120     
121     if(preg_match("/c/",$acl)){
122       $listhead .= " <input class='center' type='image' align='middle' src='images/list_new_mime.png' alt='"._("new").
123         "' title='"._("Create new mime type")."' name='mime_new'>&nbsp;";
124     }
125   
126     $listhead .= 
127       $Copy_Paste.
128       " <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;".
129       _("Base")."&nbsp;<select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
130       " <input class='center' type='image' src='images/list_submit.png' align='middle' 
131         title='"._("Submit department")."' name='submit_department' alt='"._("Submit")."'>&nbsp;".
132       "</div>";
134     $this->SetListHeader($listhead);
135   }
138   /* Some basic settings */
139   function execute()
140   {
141     $this->ClearElementsList();
142     $this->GenHeader();
143   }
146   function setEntries($list)
147   {
148     /********************
149       Variable init
150      ********************/
152     /* Create links */
153     $linkopen = "<a href='?plug=".$_GET['plug']."&amp;act=dep_open&amp;dep_id=%s'>%s</a>";
154     $editlink = "<a href='?plug=".$_GET['plug']."&amp;id=%s&amp;act=edit_entry'>%s</a>";
155     $userimg  = "<img class='center' src='images/select_groups.png' alt='User'    title='%s'>";
156     $mimeimg  = "<img class='center' src='images/select_mimetype.png' alt='A'  title='"._("Mime type")."'>";
157     $empty    = "<img class='center' src='images/empty.png' style='width:16px;height:16px;' alt=''>";
159     /* set Page header */
160     $action_col_size = 70;
161     if($this->parent->snapshotEnabled()){
162       $action_col_size += 38;
163     }
165     /********************
166       Attach objects
167      ********************/
169     $ui = get_userinfo();
170     $acl = $ui->get_permissions("cn=dummy,ou=mimetypes,".$this->selectedBase,"mimetypes/mimetype");
172     foreach($list as $key => $val){
174       /* Create action icons */
175       $actions = $this->GetSnapShotActions($val['dn']);
178       /* Get copy Paste icons */
179       if($this->parent->CopyPasteHandler){
181         /* Only add cut icon, if we are allowed to move this user */
182         if(preg_match("/m/",$acl)){
183           $actions.= "<input class='center' type='image'
184             src='images/editcut.png' alt='"._("cut")."' name='cut_%KEY%' title='"._("Cut this entry")."'>&nbsp;";
185         }else{
186           $actions.= "<img src='images/empty.png' alt='&nbsp;'>";
187         }
189         /* Copy is allowed everytime */
190         $actions.= "<input class='center' type='image'
191           src='images/editcopy.png' alt='"._("copy")."' name='copy_%KEY%' title='"._("Copy this entry")."'>&nbsp;";
192       }
194       /* Add edit button */
195       $actions.= "<input class='center' type='image'
196         src='images/edit.png' alt='"._("edit")."' name='mime_edit_%KEY%' title='"._("Edit this entry")."'>";
198       /* Add delete button */
199       if(preg_match("/d/",$acl)){
200         $actions.= "<input class='center' type='image'
201           src='images/edittrash.png' alt='"._("delete")."' name='mime_del_%KEY%' title='"._("Delete this entry")."'>";
202       }else{
203         $actions.= "<img src='images/empty.png' alt='&nbsp;'>";
204       }
206       $title = "title='".preg_replace('/ /', '&nbsp;', @LDAP::fix($val['dn']))."'";
208       if(!isset($val['description'][0])){
209         $desc = "";
210       }else{
211         $desc = " - [ ".$val['description'][0]." ]";
212       }
213       $field1 = array("string" => sprintf($mimeimg,$val['dn']), "attach" => "style='text-align:center;width:20px;'");
214       $field2 = array("string" => sprintf($editlink,$key,($val['cn']['0'].$desc)), "attach" => "style='' ".$title);
215       $field3 = array("string" => preg_replace("/%KEY%/", $key, $actions), "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'");
216       $this->AddElement(array($field1,$field2,$field3));
217     }
218   }
220   function Save()
221   {
222     MultiSelectWindow::Save();  
223   }
225   function save_object()
226   {
227     /* Save automatic created POSTs like regex, checkboxes */
228     MultiSelectWindow::save_object(); 
230     /* check if returned selectedRelease is a valid release.
231         If it isn't set to a valid release */
232     $this->AvailableReleases = $this->parent->getReleases($this->selectedBase);
233     if(!isset($this->AvailableReleases[$this->selectedRelease])){
234       $this->selectedRelease =key($this->AvailableReleases);
235     }
236     $_SESSION['mimefilter']['release']  = $this->selectedRelease;
237   }
240 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
241 ?>