Code

66bfd3156c0fde615466cad73b444237da901038
[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= "";
89     /* Get all departments within this subtree */
90     $base = $this->config->current['BASE'];
91     $deps= get_list("(&(|(ou=*)(description=*))(objectClass=gosaDepartment))", $this->module, $base,
92         array("ou", "description"), GL_SIZELIMIT | GL_SUBSEARCH);
94     /* Load possible departments */
95     $ui   = get_userinfo();
96     $tdeps= $ui->get_module_departments($this->module);
98     $ids = $this->config->idepartments;
100     foreach($deps as $dep){
101       if(isset($ids[$dep['dn']]) && in_array_ics($dep['dn'], $tdeps)){
103         $value = $ids[$dep['dn']];
104         if ($this->selectedBase == $dep['dn']){
105           $options.= "<option selected='selected' value='".$dep['dn']."'>$value</option>";
106         } else {
107           $options.= "<option value='".$dep['dn']."'>$value</option>";
108         }
109       }
110     }
112     /* Get acls */
113     $ui       = get_userinfo();
114     $acl      = $ui->get_permissions("cn=dummy,ou=mimetypes,".$this->selectedBase,"mimetypes/mimetype");
115     $acl_all  = $ui->has_complete_category_acls($this->selectedBase,"mimetypes") ;
118     /* If this is true we add an additional seperator. Just look a few lines below */  
119     $add_sep = false;
120  
121     /* Get copy & paste icon */
122     $Copy_Paste ="";
123     if(preg_match("/(c.*w|w.*c)/",$acl_all) &&  $this->parent->CopyPasteHandler){
124       $Copy_Paste = $this->parent->CopyPasteHandler->generatePasteIcon();
125       $add_sep = true;
126     }
128     /* Add default header */
129     $listhead = MultiSelectWindow::get_default_header();
131     /* Create snapshot icons */
132     if(preg_match("/(c.*w|w.*c)/",$acl_all)){
133       $listhead .= $this->get_snapshot_header($this->selectedBase);
134       $add_sep = true;
135     }
136     
137     /* Add create icon */
138     if(preg_match("/c/",$acl)){
139       $listhead .= " <input class='center' type='image' align='middle' src='images/list_new_mime.png' alt='"._("new").
140         "' title='"._("Create new mime type")."' name='mime_new'>&nbsp;";
141       $add_sep = true;
142     }
143   
144     /* Add copy & paste icons */
145     $listhead .= $Copy_Paste;
147     /* Add a seperator ? */
148     if($add_sep) {
149       $listhead .= " <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;";
150     }
151     
152     /* And at least add a department selection box */
153     $listhead .=  _("Base")."&nbsp;<select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
154       " <input class='center' type='image' src='images/list_submit.png' align='middle' 
155         title='"._("Submit department")."' name='submit_department' alt='"._("Submit")."'>&nbsp;".
156       "</div>";
158     $this->SetListHeader($listhead);
159   }
162   /* Some basic settings */
163   function execute()
164   {
165     $this->ClearElementsList();
166     $this->GenHeader();
167   }
170   function setEntries($list)
171   {
172     /********************
173       Variable init
174      ********************/
176     /* Create links */
177     $linkopen = "<a href='?plug=".$_GET['plug']."&amp;act=dep_open&amp;dep_id=%s'>%s</a>";
178     $editlink = "<a href='?plug=".$_GET['plug']."&amp;id=%s&amp;act=edit_entry'>%s</a>";
179     $userimg  = "<img class='center' src='images/select_groups.png' alt='User'    title='%s'>";
180     $mimeimg  = "<img class='center' src='images/select_mimetype.png' alt='A'  title='"._("Mime type")."'>";
181     $empty    = "<img class='center' src='images/empty.png' style='width:16px;height:16px;' alt=''>";
183     /* set Page header */
184     $action_col_size = 70;
185     if($this->parent->snapshotEnabled()){
186       $action_col_size += 38;
187     }
189     /********************
190       Attach objects
191      ********************/
193     foreach($list as $key => $val){
195       $ui       = get_userinfo();
196       $acl      = $ui->get_permissions($val['dn'],"mimetypes/mimetype");
197       $acl_all  = $ui->has_complete_category_acls($val['dn'],"mimetypes") ;
199       /* Create action icons */
200       $actions = "";
201       if(preg_match("/(c.*w|w.*c)/",$acl_all)){
202         $actions .= $this->GetSnapShotActions($val['dn']);
203       }
205       /* Get copy Paste icons */
206       if(($this->parent->CopyPasteHandler) && preg_match("/(c.*w|w.*c)/",$acl_all)){
207         $actions.= "<input class='center' type='image'
208           src='images/editcut.png' alt='"._("cut")."' name='cut_%KEY%' title='"._("Cut this entry")."'>&nbsp;";
209         $actions.= "<input class='center' type='image'
210           src='images/editcopy.png' alt='"._("copy")."' name='copy_%KEY%' title='"._("Copy this entry")."'>&nbsp;";
211       }
213       $actions.= "<input class='center' type='image'
214         src='images/edit.png' alt='"._("edit")."' name='mime_edit_%KEY%' title='"._("Edit this entry")."'>";
216       /* Add delete button */
217       if(preg_match("/d/",$acl)){
218         $actions.= "<input class='center' type='image'
219           src='images/edittrash.png' alt='"._("delete")."' name='mime_del_%KEY%' title='"._("Delete this entry")."'>";
220       }else{
221         $actions.= "<img src='images/empty.png' alt='&nbsp;' class='center'>";
222       }
224       $title = "title='".preg_replace('/ /', '&nbsp;', @LDAP::fix($val['dn']))."'";
226       if(!isset($val['description'][0])){
227         $desc = "";
228       }else{
229         $desc = " - [ ".$val['description'][0]." ]";
230       }
231       $field1 = array("string" => sprintf($mimeimg,$val['dn']), "attach" => "style='text-align:center;width:20px;'");
232       $field2 = array("string" => sprintf($editlink,$key,($val['cn']['0'].$desc)), "attach" => "style='' ".$title);
233       $field3 = array("string" => preg_replace("/%KEY%/", $key, $actions), "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'");
234       $this->AddElement(array($field1,$field2,$field3));
235     }
236   }
238   function Save()
239   {
240     MultiSelectWindow::Save();  
241   }
243   function save_object()
244   {
245     /* Save automatic created POSTs like regex, checkboxes */
246     MultiSelectWindow::save_object(); 
248     /* check if returned selectedRelease is a valid release.
249         If it isn't set to a valid release */
250     $this->AvailableReleases = $this->parent->getReleases($this->selectedBase);
251     if(!isset($this->AvailableReleases[$this->selectedRelease])){
252       $this->selectedRelease =key($this->AvailableReleases);
253     }
254     $_SESSION['mimefilter']['release']  = $this->selectedRelease;
255   }
258 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
259 ?>