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");
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);
40 /* Disable buttonsm */
41 $this->EnableCloseButton(false);
42 $this->EnableSaveButton (false);
44 /* set Page header */
45 $this->AddHeader(array("string" => " ", "attach" => "style='text-align:center;width:20px;'"));
46 $this->AddHeader(array("string" => _("Username")." / "._("Department"), "attach" => "style=''"));
47 $this->AddHeader(array("string" => _("Visible"), "attach" => "style='width:50px;'"));
48 $this->AddHeader(array("string" => _("Actions"), "attach" => "style='width:60px;border-right:0px;text-align:right;'" ));
50 /* Add Checkboxes / SubSearch checkbox */
51 $this->AddCheckBox("SubSearch", _("Select to search within subtrees"), _("Ignore subtrees"), false);
53 /* Name ,Text ,Default , Connect with alphabet */
54 $this->AddRegex ("Regex", _("Regular expression for matching macro names"),"*" , true);
55 }
57 function GenHeader()
58 {
59 /* Prepare departments,
60 which are shown in the listbox on top of the listbox
61 */
62 $options= "";
63 foreach ($this->config->idepartments as $key => $value){
64 if ($this->selectedBase == $key){
65 $options.= "<option selected='selected' value='$key'>$value</option>";
66 } else {
67 $options.= "<option value='$key'>$value</option>";
68 }
69 }
71 /* NEW LIST MANAGMENT */
72 $listhead = "<div style='background:#F0F0F9;padding:5px;'>".
73 " <input class='center' type='image' src='images/list_root.png' align='middle'
74 title='"._("Go to root department")."' name='dep_root' alt='"._("Root")."'> ".
75 " <input class='center' type='image' align='middle' src='images/list_back.png'
76 title='"._("Go up one department")."' alt='"._("Up")."' name='dep_back'> ".
77 " <input class='center' type='image' align='middle' src='images/list_home.png'
78 title='"._("Go to users department")."' alt='"._("Home")."' name='dep_home'> ".
79 " <input class='center' type='image' src='images/list_reload.png' align='middle'
80 title='"._("Reload list")."' name='submit_department' alt='"._("Submit")."'> ".
81 " <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'> ".
82 " <input class='center' type='image' align='middle' src='images/list_new_macro.png'
83 title='"._("Create new phone macro")."' alt='"._("New")."' name='user_new'> ".
84 " <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'> ".
85 _("Base")." <select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
86 " <input class='center' type='image' src='images/list_submit.png' align='middle'
87 title='"._("Submit department")."' name='submit_department' alt='"._("Submit")."'> ".
88 "</div>";
90 $this->SetListHeader($listhead);
91 }
93 function execute()
94 {
95 $this->ClearElementsList();
96 $this->GenHeader();
97 }
99 function setEntries($list)
100 {
102 $action = "<input class='center' type='image' src='images/edit.png' alt='"._("edit")."'
103 name='user_edit_%KEY%' title='"._("Edit user")."'>";
104 $action .= "<input class='center' type='image' src='images/edittrash.png' alt='"._("delete")."'
105 name='user_del_%KEY%' title='"._("Delete user")."'>";
107 $empty = "<img class='center' src='images/nothing.png' style='width:16px;height:16px;' alt=''>";
108 $macroimg = "<img class='center' src='images/list_macro.png' alt='"._("Macro")."' title='%s'>";
109 $visible = "<img class='center' src='images/true.png' alt='"._("yes")."' title='"._("visible")."'>";
110 $invisible = "<img class='center' src='images/false.png' alt='"._("no")."'title='"._("invisible")."'>";
111 $editlink = "<a href='?plug=".$_GET['plug']."&id=%s&act=edit_entry'>%s</a>";
113 foreach($list as $key => $val){
114 $display= $val["displayName"][0];
116 if(isset($val['goFonMacroVisible']['0'])&&($val['goFonMacroVisible']['0'] == "1")){
117 $pic1 = $visible;
118 }else{
119 $pic1 = $invisible;
120 }
122 $field1 = array("string" => sprintf($macroimg,$val['dn']), "attach" => "style='text-align:center;width:20px;'");
123 $field2 = array("string" => sprintf($editlink,$key,$display), "attach" => "style='' title='dn: ".@LDAP::fix($val['dn'])."'");
124 $field3 = array("string" => $pic1, "attach" => "style='width:50px;'");
125 $field4 = array("string" => preg_replace("/%KEY%/", "$key", $action), "attach" => "style='width:60px;border-right:0px;text-align:right;'");
127 $this->AddElement(array($field1,$field2,$field3,$field4));
128 }
129 }
131 function Save()
132 {
133 MultiSelectWindow :: Save();
134 }
136 function save_object()
137 {
138 /* Save automatic created POSTs like regex, checkboxes */
139 MultiSelectWindow :: save_object();
140 }
141 }
142 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
143 ?>