Code

Added remove multiple entries to macro list
[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 = 50;
46     if($this->parent->snapshotEnabled()){
47       $action_col_size += 20;
48     }
50     /* set Page header */
51     $this->AddHeader(array("string" => "&nbsp;", "attach" => "style='text-align:center;width:20px;'"));
52     $this->AddHeader(array("string" =>_("Name - Number"), "attach" => "style=''"));
53     $this->AddHeader(array("string" => _("Owner"), "attach" => "style='width:200px;'"));
54     $this->AddHeader(array("string" => _("PIN"), "attach" => "style='width:50px;'"));
55     $this->AddHeader(array("string" =>_("Actions"), "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'"));
57     /* Add Checkboxes / SubSearch checkbox */
58     $this->AddCheckBox("SubSearch",  _("Select to search within subtrees"), _("Ignore subtrees"), false);
60     /*                  Name                 ,Text                              ,Default  , Connect with alphabet  */
61     $this->AddRegex   ("Regex",      _("Regular expression for matching conference names"),"*" , true);
62   }
65   function GenHeader()
66   {
67     /* Prepare departments,
68        which are shown in the listbox on top of the listbox
69      */
70     $options= "";
72     /* Get all departments within this subtree */
73     $base = $this->config->current['BASE'];
74     $deps= get_list("(&(|(ou=*)(description=*))(objectClass=gosaDepartment))", $this->module, $base,
75                     array("ou", "description"), GL_SIZELIMIT | GL_SUBSEARCH);
77     /* Load possible departments */
78     $ui     = get_userinfo();
79     $tdeps  = $ui->get_module_departments("gofonconference");
80     $ids    = $this->config->idepartments;
82     foreach($deps as $dep){
83       if(isset($ids[$dep['dn']]) && in_array_ics($dep['dn'], $tdeps)){
84         $value = $ids[$dep['dn']];
85         if ($this->selectedBase == $dep['dn']){
86           $options.= "<option selected='selected' value='".$dep['dn']."'>$value</option>";
87         } else {
88           $options.= "<option value='".$dep['dn']."'>$value</option>";
89         }
90       }
91     }
93     /* Get acls */
94     $acls     = $ui->get_permissions($this->selectedBase,"gofonconference/conference");
95     $acl_all  = $ui->has_complete_category_acls($this->selectedBase,"gofonconference") ;
97     /* Add default header */
98     $listhead = MultiSelectWindow::get_default_header();
100     /* Only display create new conference if we are allowed to create new confe... */
101     if(preg_match("/c/",$acls)){
102       $listhead .=" <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;".
103         " <input class='center' type='image' align='middle' src='images/list_new_conference.png' 
104         title='"._("Create new conference")."' alt='"._("New conference")."' name='conference_new'>&nbsp;".
105         " <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;";
106     }
108     /* Only display snapshot settings if we are able to write && create new entries */
109     if(preg_match("/(c.*w|w.*c)/",$acl_all)){
110       $listhead .= $this->get_snapshot_header($this->selectedBase);
111     }
112   
113     /* Add the rest (base select ....)*/
114     $listhead .= _("Base")."&nbsp;<select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
115       " <input class='center' type='image' src='images/list_submit.png' align='middle' 
116       title='"._("Submit department")."' name='submit_department' alt='".  _("Submit").     "'>&nbsp;".
117       "</div>";
119     $this->SetListHeader($listhead);
120   }
122   function execute()
123   {
124     $this->ClearElementsList();
125     $this->GenHeader();
126   }
128   function setEntries($list)
129   {
130     $linkopen= "<a href='?plug=".$_GET['plug']."&amp;act=dep_open&amp;dep_id=%s'>%s</a>";
132     $userimg  = "<img class='center' src='images/select_conference.png' alt='User' title='%s'>";
133     $editlink = "<a href='?plug=".$_GET['plug']."&amp;id=%s&amp;act=edit_entry'>%s</a>";
135     /* Dynamic action col, depending on snapshot icons */
136     $action_col_size = 50;
137     if($this->parent->snapshotEnabled()){
138       $action_col_size += 20;
139     }
141     /* Insert conferneces*/
142     foreach($list as $conferencekey => $conference ){
144       $acl      = $this->ui->get_permissions($conference['dn'],"gofonconference/conference");
145       $acl_all  = $this->ui->has_complete_category_acls($conference['dn'],"gofonconference");
147       /* You will need at least read access for the 
148           current conference informations to display it */  
149       if(!preg_match("/r/",$acl)){
150         continue;
151       }
153       /* Add edit icon - This is allowed when we have at least read access. */
154       $actions= "<input class='center' type='image' src='images/edit.png'     
155                     alt='"._("edit")."'    name='conference_edit_%KEY%' title='"._("Edit this entry")."'>";
157       /* Add snapshot icon - This is allowed when we have create and write access for the current entry */
158       if(preg_match("/(c.*w|w.*c)/",$acl_all)){
159         $actions.= $this->GetSnapShotActions($conference['dn']);
160       }
162       /* Create delete link - Only if we are allowed to delete this entry */
163       if(preg_match("/d/",$acl)){
164         $actions.= "<input class='center' type='image' src='images/edittrash.png' 
165           alt='"._("delete")."'   name='conference_del_%KEY%'  title='"._("Delete this entry")."'>";
166       }
168       /* Display PIN icon, only if we are the owner of the given conference */
169       $owner = $this->parent->ui->dn==$conference['goFonConferenceOwner'][0];
170       $p_acl = $this->ui->get_permissions($conference['dn'],"gofonconference/conference","goFonPIN");
171       if((isset($conference['goFonPIN'][0])) && $owner && preg_match("/r/",$p_acl)){
172         $pin = "<img class='center' src='images/list_password.png' title='PIN : ".$conference['goFonPIN'][0]."' alt='PIN'>";
173       }else{
174         $pin = "&nbsp;";
175       }
177       /* Display numer of the conference if we are allowed to view it */
178       $n_acl = $this->ui->get_permissions($conference['dn'],"gofonconference/conference","telephoneNumber");
179       if(isset($conference['telephoneNumber'][0]) && preg_match("/r/",$n_acl)){
180         $number = " - ".$conference['telephoneNumber'][0];
181       }else{
182         $number = "&nbsp; - ?";
183       }
185       /* Get conference owner name */
186       $ldap= $this->parent->config->get_ldap_link();
187       $ldap->cat($conference['goFonConferenceOwner'][0], array('cn'));
188       $data = $ldap->fetch();
189       if(isset($data['cn'][0])){
190         $cn = $data['cn'][0];
191       }else{
192         $cn = _("Unknown"); 
193       }  
195       /* Create title */
196       $title = " title='".preg_replace("/ /","&nbsp;",@LDAP::fix($data['dn']))."' ";
198       $a_field1 = array("string"=>sprintf($userimg,_("Conference")), "attach" => $title." style='text-align:center;width:20px;'");
199       $a_field2 = array("string"=>sprintf($editlink,$conferencekey,$conference['cn'][0].$number), "attach" => $title." style=''");
200       $a_field3 = array("string"=> $cn , "attach" =>  $title." style='width:200px;'");
201       $a_field4 = array("string"=> $pin, "attach" =>  $title." style='width:50px;'");
202       $a_field5 = array("string"=> preg_replace("/%KEY%/",$conferencekey,$actions), 
203                         "attach"=> $title."style='width:".$action_col_size."px;border-right:0px;text-align:right;'");
205       $this->AddElement(array($a_field1,$a_field2,$a_field3,$a_field4,$a_field5));
206     }
207   }
209   function Save()
210   {
211     MultiSelectWindow :: Save();  
212   }
214   function save_object()
215   {
216     /* Save automatic created POSTs like regex, checkboxes */
217     MultiSelectWindow :: save_object();   
218   }
220 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
221 ?>