Code

Added navigation gray out if option is not available
[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");
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     /* set Page header */
45     $this->AddHeader(array("string" => "&nbsp;", "attach" => "style='text-align:center;width:20px;'"));
46     $this->AddHeader(array("string" => _("macro name")." / "._("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     /* Add default header */
72     $listhead = MultiSelectWindow::get_default_header();
73     $listhead.=  " <input class='center' type='image' align='middle' src='images/list_new_macro.png' 
74         title='"._("Create new phone macro")."' alt='"._("New")."' name='user_new'>&nbsp;".
75       " <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;".
76       _("Base")."&nbsp;<select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
77       " <input class='center' type='image' src='images/list_submit.png' align='middle' 
78         title='"._("Submit department")."' name='submit_department' alt='"._("Submit")."'>&nbsp;".
79       "</div>";
81     $this->SetListHeader($listhead);
82   }
84   function execute()
85   {
86     $this->ClearElementsList();
87     $this->GenHeader();
88   }
90   function setEntries($list)
91   {
92   
93     $action     = "<input class='center' type='image' src='images/edit.png' alt='"._("edit")."'     
94                     name='user_edit_%KEY%' title='"._("Edit macro")."'>";
95     $action    .= "<input class='center' type='image' src='images/edittrash.png' alt='"._("delete")."'   
96                     name='user_del_%KEY%' title='"._("Delete macro")."'>";
97   
98     $empty      = "<img class='center' src='images/nothing.png' style='width:16px;height:16px;' alt=''>";
99     $macroimg   = "<img class='center' src='images/list_macro.png' alt='"._("Macro")."' title='%s'>";
100     $visible    = "<img class='center' src='images/true.png' alt='"._("yes")."' title='"._("visible")."'>";
101     $invisible  = "<img class='center' src='images/false.png' alt='"._("no")."'title='"._("invisible")."'>";
102     $editlink   = "<a href='?plug=".$_GET['plug']."&amp;id=%s&amp;act=edit_entry'>%s</a>";
104     foreach($list as $key => $val){
105       $display= $val["displayName"][0];
107       if(isset($val['goFonMacroVisible']['0'])&&($val['goFonMacroVisible']['0'] == "1")){
108         $pic1 = $visible;
109       }else{
110         $pic1 = $invisible;
111       }
113       $field1 = array("string" => sprintf($macroimg,$val['dn']), "attach" => "style='text-align:center;width:20px;'");
114       $field2 = array("string" => sprintf($editlink,$key,$display), "attach" => "style='' title='".preg_replace('/ /', '&nbsp;', @LDAP::fix($val['dn']))."'");
115       $field3 = array("string" => $pic1, "attach" => "style='width:50px;'");
116       $field4 = array("string" => preg_replace("/%KEY%/", "$key", $action), "attach" => "style='width:60px;border-right:0px;text-align:right;'");
118       $this->AddElement(array($field1,$field2,$field3,$field4));
119     }
120   }
122   function Save()
123   {
124     MultiSelectWindow :: Save();  
125   }
127   function save_object()
128   {
129     /* Save automatic created POSTs like regex, checkboxes */
130     MultiSelectWindow :: save_object();   
131   }
133 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
134 ?>