Code

Added grey out to currently queued objects for copy&paste.
[gosa.git] / plugins / gofon / conference / class_divListConferences.inc
1 <?php
3 class divListConference extends MultiSelectWindow
4 {
6   /* Current base */
7   var $selectedBase       = "";
8   var $departments        = array();
10   /* Regex */
11   var $Regex              = "*";
13   /* checkboxes */
14   var $ShowSendBocklists      ;
15   var $ShowReceiveMacros  ;
17   /* Subsearch checkbox */
18   var $SubSearch;
20   var $parent             ;
21   var $ui                 ;
23   function divListConference ($config,$parent)
24   {
25     MultiSelectWindow::MultiSelectWindow($config,"Conferences", "gofonconference");
26     
27     $this->parent       = $parent;
28     $this->ui           = get_userinfo();
30     /* Set list strings */
31     $this->SetTitle(_("List of conference rooms"));
32     $this->SetSummary(_("List of conference rooms"));
34     /* Result page will look like a headpage */
35     $this->SetHeadpageMode();
36     $this->SetInformation(_("This menu allows you to create, delete and edit selected phone conferences. Having a large number of phone conferences, you might prefer the range selectors on top of the conferences list."));
38     $this->EnableAplhabet(true);
39   
40     /* Disable buttonsm */
41     $this->EnableCloseButton(false);
42     $this->EnableSaveButton (false);
44     /* Dynamic action col, depending on snapshot icons */
45     $action_col_size = 100;
46     if($this->parent->snapshotEnabled()){
47       $action_col_size += 20;
48     }
50     /* Toggle all selected / deselected */
51     $chk = "<input type='checkbox' id='select_all' name='select_all'
52       onClick='toggle_all_(\"^item_selected_[0-9]*$\",\"select_all\");' >";
54     /* set Page header */
55     $this->AddHeader(array("string"=> $chk,          "attach"=>"style='width:20px;'"));
56     $this->AddHeader(array("string" => "&nbsp;", "attach" => "style='text-align:center;width:20px;'"));
57     $this->AddHeader(array("string" =>_("Name - Number"), "attach" => "style=''"));
58     $this->AddHeader(array("string" => _("Owner"), "attach" => "style='width:200px;'"));
59     $this->AddHeader(array("string" => _("PIN"), "attach" => "style='width:50px;'"));
60     $this->AddHeader(array("string" =>_("Actions"), "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'"));
62     /* Add Checkboxes / SubSearch checkbox */
63     $this->AddCheckBox("SubSearch",  _("Select to search within subtrees"), _("Search in subtrees"), false);
65     /*                  Name                 ,Text                              ,Default  , Connect with alphabet  */
66     $this->AddRegex   ("Regex",      _("Regular expression for matching conference names"),"*" , true);
67   }
70   function GenHeader()
71   {
72     /* Prepare departments,
73        which are shown in the listbox on top of the listbox
74      */
75     $options= "";
77     /* Get all departments within this subtree */
78     $base = $this->config->current['BASE'];
80     /* Add base */
81     $tmp = array();
82     $tmp[] = array("dn"=>$this->config->current['BASE']);
83     $tmp=  array_merge($tmp,get_list("(&(|(ou=*)(description=*))(objectClass=gosaDepartment))", $this->module, $base,
84                     array("ou", "description"), GL_SIZELIMIT | GL_SUBSEARCH));
86     $deps = array();
87     foreach($tmp as $tm){
88       $deps[$tm['dn']] = $tm['dn'];
89     }
90   
91     /* Load possible departments */
92     $ui= get_userinfo();
93     $tdeps= $ui->get_module_departments("gofonconference");
94     $ids = $this->config->idepartments;
95     $first = "";
96     $found = FALSE;
97     foreach($ids as $dep => $name){
98       if(isset($deps[$dep]) && in_array_ics($dep, $tdeps)){
100         /* Keep first base dn in mind, we could need this
101          *  info if no valid base was found
102          */
103         if(empty($first)) {
104           $first = $dep['dn'];
105         }
107         $value = $ids[$dep];
108         if ($this->selectedBase == $dep){
109           $found = TRUE;
110           $options.= "<option selected='selected' value='".$dep."'>$value</option>";
111         } else {
112           $options.= "<option value='".$dep."'>$value</option>";
113         }
114       }
115     }
117     /* The currently used base is not visible with your acl setup.
118      * Set base to first useable base.
119      */
120     if(!$found){
121       $this->selectedBase = $first;
122     }
124     /* Get acls */
125     $acls     = $ui->get_permissions($this->selectedBase,"gofonconference/conference");
126     $acl_all  = $ui->has_complete_category_acls($this->selectedBase,"gofonconference") ;
128     /* Add default header */
129     $listhead = MultiSelectWindow::get_default_header();
131     /* Get copy & paste icon */
132     $Copy_Paste ="";
133     if(preg_match("/(c.*w|w.*c)/",$acls) &&  $this->parent->CopyPasteHandler){
134       $Copy_Paste = $this->parent->CopyPasteHandler->generatePasteIcon();
135       $addsep = true;
136     }
139     /* Only display snapshot settings if we are able to write && create new entries */
140     if(preg_match("/(c.*w|w.*c)/",$acl_all)){
141       $listhead .= $this->get_snapshot_header($this->selectedBase);
142     }
143     $listhead .= $Copy_Paste;
145     /* Only display create new conference if we are allowed to create new confe... */
146     if(preg_match("/c/",$acls)){
147       $listhead .=" <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;".
148         " <input class='center' type='image' align='middle' src='images/list_new_conference.png' 
149         title='"._("Create new conference")."' alt='"._("New conference")."' name='conference_new'>&nbsp;".
150         " <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;";
151     }
152   
153     /* Add the rest (base select ....)*/
154     $listhead .= _("Base")."&nbsp;<select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
155       " <input class='center' type='image' src='images/list_submit.png' align='middle' 
156       title='"._("Submit department")."' name='submit_department' alt='".  _("Submit").     "'>&nbsp;";
158     /* Multiple options */
159     $listhead .= "&nbsp;<input class='center' type='image' align='middle' src='images/edittrash.png'
160       title='"._("Remove selected conferences")."' alt='"._("Remove conferences")."' name='remove_multiple_conferences'>&nbsp;";
162     /* Add multiple copy & cut icons */
163     if(is_object($this->parent->CopyPasteHandler)){
164       $listhead .= "&nbsp;<input class='center' type='image' align='middle' src='images/editcopy.png'
165         title='"._("Copy selected objects")."' alt='"._("Copy objects")."' name='multiple_copy_objects'>&nbsp;";
166       $listhead .= "&nbsp;<input class='center' type='image' align='middle' src='images/editcut.png'
167         title='"._("cut selected objects")."' alt='"._("Cut objects")."' name='multiple_cut_objects'>&nbsp;";
168       $listhead .= "</div>";
169     }
171     $listhead .="</div>";
173     $this->SetListHeader($listhead);
174   }
176   function execute()
177   {
178     $this->ClearElementsList();
179     $this->GenHeader();
180   }
182   function setEntries($list)
183   {
184     $linkopen= "<a href='?plug=".$_GET['plug']."&amp;act=dep_open&amp;dep_id=%s'>%s</a>";
186     $userimg  = "<img class='center' src='images/select_conference.png' alt='User' title='%s'>";
187     $editlink = "<a href='?plug=".$_GET['plug']."&amp;id=%s&amp;act=edit_entry'>%s</a>";
189     /* Dynamic action col, depending on snapshot icons */
190     $action_col_size = 100;
191     if($this->parent->snapshotEnabled()){
192       $action_col_size += 20;
193     }
195     /* Insert conferneces*/
196     foreach($list as $conferencekey => $conference ){
198       $acl      = $this->ui->get_permissions($conference['dn'],"gofonconference/conference");
199       $acl_all  = $this->ui->has_complete_category_acls($conference['dn'],"gofonconference");
201       /* You will need at least read access for the 
202           current conference informations to display it */  
203       if(!preg_match("/r/",$acl)){
204         continue;
205       }
207       $actions ="";
208       if(($this->parent->CopyPasteHandler) && preg_match("/(c.*w|w.*c)/",$acl_all)){
209         $actions.= "<input class='center' type='image'
210           src='images/editcut.png' alt='"._("cut")."' name='cut_%KEY%' title='"._("Cut this entry")."'>&nbsp;";
211         $actions.= "<input class='center' type='image'
212           src='images/editcopy.png' alt='"._("copy")."' name='copy_%KEY%' title='"._("Copy this entry")."'>&nbsp;";
213       }
215       /* Add edit icon - This is allowed when we have at least read access. */
216       $actions.= "<input class='center' type='image' src='images/edit.png'     
217                     alt='"._("edit")."'    name='conference_edit_%KEY%' title='"._("Edit this entry")."'>";
219       /* Add snapshot icon - This is allowed when we have create and write access for the current entry */
220       if(preg_match("/(c.*w|w.*c)/",$acl_all)){
221         $actions.= $this->GetSnapShotActions($conference['dn']);
222       }
224       /* Create delete link - Only if we are allowed to delete this entry */
225       if(preg_match("/d/",$acl)){
226         $actions.= "<input class='center' type='image' src='images/edittrash.png' 
227           alt='"._("delete")."'   name='conference_del_%KEY%'  title='"._("Delete this entry")."'>";
228       }
230       /* Display PIN icon, only if we are the owner of the given conference */
231       $owner = $this->parent->ui->dn==$conference['goFonConferenceOwner'][0];
232       $p_acl = $this->ui->get_permissions($conference['dn'],"gofonconference/conference","goFonPIN");
233       if((isset($conference['goFonPIN'][0])) && $owner && preg_match("/r/",$p_acl)){
234         $pin = "<img class='center' src='images/list_password.png' title='PIN : ".$conference['goFonPIN'][0]."' alt='PIN'>";
235       }else{
236         $pin = "&nbsp;";
237       }
239       /* Display numer of the conference if we are allowed to view it */
240       $n_acl = $this->ui->get_permissions($conference['dn'],"gofonconference/conference","telephoneNumber");
241       if(isset($conference['telephoneNumber'][0]) && preg_match("/r/",$n_acl)){
242         $number = " - ".$conference['telephoneNumber'][0];
243       }else{
244         $number = "&nbsp; - ?";
245       }
247       /* Get conference owner name */
248       $ldap= $this->parent->config->get_ldap_link();
249       $ldap->cat($conference['goFonConferenceOwner'][0], array('cn'));
250       $data = $ldap->fetch();
251       if(isset($data['cn'][0])){
252         $cn = $data['cn'][0];
253       }else{
254         $cn = _("Unknown"); 
255       }  
257       /* Create title */
258       $title = " title='".preg_replace("/ /","&nbsp;",@LDAP::fix($data['dn']))."' ";
260       /* Cutted objects should be displayed in light grey */
261       $display = $conference['cn'][0].$number;
262       if($this->parent->CopyPasteHandler){
263         foreach($this->parent->CopyPasteHandler->queue as $queue_key => $queue_data){
264           if($queue_data['dn'] == $conference['dn']) {
265             $display = "<font color='#999999'>".$display."</font>";
266             break;
267           }
268         }
269       }
271       /* Create each field */
272       $field0 = array("string" => "<input type='checkbox' id='item_selected_".$conferencekey."' name='item_selected_".$conferencekey."'>" ,
273           "attach" => "style='width:20px;'");
274       $a_field1 = array("string"=>sprintf($userimg,_("Conference")), "attach" => $title." style='text-align:center;width:20px;'");
275       $a_field2 = array("string"=>sprintf($editlink,$conferencekey,$display), "attach" => $title." style=''");
276       $a_field3 = array("string"=> $cn , "attach" =>  $title." style='width:200px;'");
277       $a_field4 = array("string"=> $pin, "attach" =>  $title." style='width:50px;'");
278       $a_field5 = array("string"=> preg_replace("/%KEY%/",$conferencekey,$actions), 
279                         "attach"=> $title."style='width:".$action_col_size."px;border-right:0px;text-align:right;'");
281       $this->AddElement(array($field0,$a_field1,$a_field2,$a_field3,$a_field4,$a_field5));
282     }
283   }
285   function Save()
286   {
287     MultiSelectWindow :: Save();  
288   }
290   function save_object()
291   {
292     /* Save automatic created POSTs like regex, checkboxes */
293     MultiSelectWindow :: save_object();   
294   }
296 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
297 ?>