Code

Added copy & paste to gofon Macros
[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 = 60;
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"), _("Ignore 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     /* Only display create new conference if we are allowed to create new confe... */
132     if(preg_match("/c/",$acls)){
133       $listhead .=" <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;".
134         " <input class='center' type='image' align='middle' src='images/list_new_conference.png' 
135         title='"._("Create new conference")."' alt='"._("New conference")."' name='conference_new'>&nbsp;".
136         " <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;";
137     }
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   
144     /* Add the rest (base select ....)*/
145     $listhead .= _("Base")."&nbsp;<select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
146       " <input class='center' type='image' src='images/list_submit.png' align='middle' 
147       title='"._("Submit department")."' name='submit_department' alt='".  _("Submit").     "'>&nbsp;";
149     /* Multiple options */
150     $listhead .= "&nbsp;<input class='center' type='image' align='middle' src='images/edittrash.png'
151       title='"._("Remove selected conferences")."' alt='"._("Remove conferences")."' name='remove_multiple_conferences'>&nbsp;";
153     $listhead .="</div>";
155     $this->SetListHeader($listhead);
156   }
158   function execute()
159   {
160     $this->ClearElementsList();
161     $this->GenHeader();
162   }
164   function setEntries($list)
165   {
166     $linkopen= "<a href='?plug=".$_GET['plug']."&amp;act=dep_open&amp;dep_id=%s'>%s</a>";
168     $userimg  = "<img class='center' src='images/select_conference.png' alt='User' title='%s'>";
169     $editlink = "<a href='?plug=".$_GET['plug']."&amp;id=%s&amp;act=edit_entry'>%s</a>";
171     /* Dynamic action col, depending on snapshot icons */
172     $action_col_size = 60;
173     if($this->parent->snapshotEnabled()){
174       $action_col_size += 20;
175     }
177     /* Insert conferneces*/
178     foreach($list as $conferencekey => $conference ){
180       $acl      = $this->ui->get_permissions($conference['dn'],"gofonconference/conference");
181       $acl_all  = $this->ui->has_complete_category_acls($conference['dn'],"gofonconference");
183       /* You will need at least read access for the 
184           current conference informations to display it */  
185       if(!preg_match("/r/",$acl)){
186         continue;
187       }
189       /* Add edit icon - This is allowed when we have at least read access. */
190       $actions= "<input class='center' type='image' src='images/edit.png'     
191                     alt='"._("edit")."'    name='conference_edit_%KEY%' title='"._("Edit this entry")."'>";
193       /* Add snapshot icon - This is allowed when we have create and write access for the current entry */
194       if(preg_match("/(c.*w|w.*c)/",$acl_all)){
195         $actions.= $this->GetSnapShotActions($conference['dn']);
196       }
198       /* Create delete link - Only if we are allowed to delete this entry */
199       if(preg_match("/d/",$acl)){
200         $actions.= "<input class='center' type='image' src='images/edittrash.png' 
201           alt='"._("delete")."'   name='conference_del_%KEY%'  title='"._("Delete this entry")."'>";
202       }
204       /* Display PIN icon, only if we are the owner of the given conference */
205       $owner = $this->parent->ui->dn==$conference['goFonConferenceOwner'][0];
206       $p_acl = $this->ui->get_permissions($conference['dn'],"gofonconference/conference","goFonPIN");
207       if((isset($conference['goFonPIN'][0])) && $owner && preg_match("/r/",$p_acl)){
208         $pin = "<img class='center' src='images/list_password.png' title='PIN : ".$conference['goFonPIN'][0]."' alt='PIN'>";
209       }else{
210         $pin = "&nbsp;";
211       }
213       /* Display numer of the conference if we are allowed to view it */
214       $n_acl = $this->ui->get_permissions($conference['dn'],"gofonconference/conference","telephoneNumber");
215       if(isset($conference['telephoneNumber'][0]) && preg_match("/r/",$n_acl)){
216         $number = " - ".$conference['telephoneNumber'][0];
217       }else{
218         $number = "&nbsp; - ?";
219       }
221       /* Get conference owner name */
222       $ldap= $this->parent->config->get_ldap_link();
223       $ldap->cat($conference['goFonConferenceOwner'][0], array('cn'));
224       $data = $ldap->fetch();
225       if(isset($data['cn'][0])){
226         $cn = $data['cn'][0];
227       }else{
228         $cn = _("Unknown"); 
229       }  
231       /* Create title */
232       $title = " title='".preg_replace("/ /","&nbsp;",@LDAP::fix($data['dn']))."' ";
234       /* Create each field */
235       $field0 = array("string" => "<input type='checkbox' id='item_selected_".$conferencekey."' name='item_selected_".$conferencekey."'>" ,
236           "attach" => "style='width:20px;'");
237       $a_field1 = array("string"=>sprintf($userimg,_("Conference")), "attach" => $title." style='text-align:center;width:20px;'");
238       $a_field2 = array("string"=>sprintf($editlink,$conferencekey,$conference['cn'][0].$number), "attach" => $title." style=''");
239       $a_field3 = array("string"=> $cn , "attach" =>  $title." style='width:200px;'");
240       $a_field4 = array("string"=> $pin, "attach" =>  $title." style='width:50px;'");
241       $a_field5 = array("string"=> preg_replace("/%KEY%/",$conferencekey,$actions), 
242                         "attach"=> $title."style='width:".$action_col_size."px;border-right:0px;text-align:right;'");
244       $this->AddElement(array($field0,$a_field1,$a_field2,$a_field3,$a_field4,$a_field5));
245     }
246   }
248   function Save()
249   {
250     MultiSelectWindow :: Save();  
251   }
253   function save_object()
254   {
255     /* Save automatic created POSTs like regex, checkboxes */
256     MultiSelectWindow :: save_object();   
257   }
259 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
260 ?>