Code

ACL updates
[gosa.git] / plugins / gofon / macro / class_divListMacros.inc
1 <?php
3 class divListMacro 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 divListMacro ($config,$parent)
24   {
25     MultiSelectWindow::MultiSelectWindow($config,"Macros", "gofon");
26     
27     $this->parent       = $parent;
28     $this->ui           = get_userinfo();
30     /* Set list strings */
31     $this->SetTitle(_("List of macros"));
32     $this->SetSummary(_("List of macros"));
34     /* Result page will look like a headpage */
35     $this->SetHeadpageMode();
36     $this->SetInformation(_("This menu allows you to add, edit and remove selected macros. You may want to use the range selector on top of the macro listbox, when working with a large number of macros."));
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" => _("macro name")." / "._("Department"), "attach" => "style=''"));
53     $this->AddHeader(array("string" => _("Visible"), "attach" => "style='width:50px;'"));
54     $this->AddHeader(array("string" => _("Actions"), "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'" ));
56     /* Add Checkboxes / SubSearch checkbox */
57     $this->AddCheckBox("SubSearch",  _("Select to search within subtrees"), _("Ignore subtrees"), false);
59     /*                  Name                 ,Text                              ,Default  , Connect with alphabet  */
60     $this->AddRegex   ("Regex",     _("Regular expression for matching macro names"),"*" , true);
61   }
63   function GenHeader()
64   {
65     /* Prepare departments,
66        which are shown in the listbox on top of the listbox
67      */
68     $options= "";
69     foreach ($this->config->idepartments as $key => $value){
70       if ($this->selectedBase == $key){
71         $options.= "<option selected='selected' value='$key'>$value</option>";
72       } else {
73         $options.= "<option value='$key'>$value</option>";
74       }
75     }
77     /* NEW LIST MANAGMENT */
78     $listhead = "<div style='background:#F0F0F9;padding:5px;'>".
79       " <input class='center' type='image' src='images/list_root.png' align='middle' 
80         title='"._("Go to root department")."' name='dep_root' alt='"._("Root")."'>&nbsp;".
81       " <input class='center' type='image' align='middle' src='images/list_back.png' 
82         title='"._("Go up one department")."' alt='"._("Up")."' name='dep_back'>&nbsp;".
83       " <input class='center' type='image' align='middle' src='images/list_home.png' 
84         title='"._("Go to users department")."' alt='"._("Home")."' name='dep_home'>&nbsp;".
85       " <input class='center' type='image' src='images/list_reload.png' align='middle' 
86         title='"._("Reload list")."' name='submit_department' alt='"._("Submit")."'>&nbsp;".
87         " <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;";
88     $listhead .= $this->get_snapshot_header($this->selectedBase);
89     $listhead .=  " <input class='center' type='image' align='middle' src='images/list_new_macro.png' 
90       title='"._("Create new phone macro")."' alt='"._("New")."' name='user_new'>&nbsp;".
91       " <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;".
92       _("Base")."&nbsp;<select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
93       " <input class='center' type='image' src='images/list_submit.png' align='middle' 
94       title='"._("Submit department")."' name='submit_department' alt='"._("Submit")."'>&nbsp;".
95       "</div>";
97     $this->SetListHeader($listhead);
98   }
100   function execute()
101   {
102     $this->ClearElementsList();
103     $this->GenHeader();
104   }
106   function setEntries($list)
107   {
108   
109     $action     = "<input class='center' type='image' src='images/edit.png' alt='"._("edit")."'     
110                     name='user_edit_%KEY%' title='"._("Edit macro")."'>";
111     $action    .= "<input class='center' type='image' src='images/edittrash.png' alt='"._("delete")."'   
112                     name='user_del_%KEY%' title='"._("Delete macro")."'>";
113   
114     $empty      = "<img class='center' src='images/nothing.png' style='width:16px;height:16px;' alt=''>";
115     $macroimg   = "<img class='center' src='images/list_macro.png' alt='"._("Macro")."' title='%s'>";
116     $visible    = "<img class='center' src='images/true.png' alt='"._("yes")."' title='"._("visible")."'>";
117     $invisible  = "<img class='center' src='images/false.png' alt='"._("no")."'title='"._("invisible")."'>";
118     $editlink   = "<a href='?plug=".$_GET['plug']."&amp;id=%s&amp;act=edit_entry'>%s</a>";
120     /* Dynamic action col, depending on snapshot icons */
121     $action_col_size = 50;
122     if($this->parent->snapshotEnabled()){
123       $action_col_size += 20;
124     }
126     foreach($list as $key => $val){
127    
128       $action= "<input class='center' type='image' src='images/edit.png' alt='"._("edit")."'     
129         name='user_edit_%KEY%' title='"._("Edit macro")."'>";
130       $action.= $this->GetSnapShotActions($val['dn']); 
131       $action.= "<input class='center' type='image' src='images/edittrash.png' alt='"._("delete")."'   
132         name='user_del_%KEY%' title='"._("Delete macro")."'>";
134       $display= $val["displayName"][0];
136       if(isset($val['goFonMacroVisible']['0'])&&($val['goFonMacroVisible']['0'] == "1")){
137         $pic1 = $visible;
138       }else{
139         $pic1 = $invisible;
140       }
142       $field1 = array("string" => sprintf($macroimg,$val['dn']), "attach" => "style='text-align:center;width:20px;'");
143       $field2 = array("string" => sprintf($editlink,$key,$display), "attach" => "style='' title='".preg_replace('/ /', '&nbsp;', @LDAP::fix($val['dn']))."'");
144       $field3 = array("string" => $pic1, "attach" => "style='width:50px;'");
145       $field4 = array("string" => preg_replace("/%KEY%/", "$key", $action), "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'");
147       $this->AddElement(array($field1,$field2,$field3,$field4));
148     }
149   }
151   function Save()
152   {
153     MultiSelectWindow :: Save();  
154   }
156   function save_object()
157   {
158     /* Save automatic created POSTs like regex, checkboxes */
159     MultiSelectWindow :: save_object();   
160   }
162 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
163 ?>