Code

Updated dn display to not break at spaces
[gosa.git] / plugins / gofax / blocklists / class_divListBlocklists.inc
1 <?php
3 class divListBlocklist 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 $ShowReceiveBlocklists  ;
17   /* Subsearch checkbox */
18   var $SubSearch;
20   var $parent             ;
21   var $ui                 ;
23   function divListBlocklist ($config,$parent)
24   {
25     MultiSelectWindow::MultiSelectWindow($config,"Blocklists");
26     
27     $this->parent       = $parent;
28     $this->ui           = get_userinfo();
30     /* Set list strings */
31     $this->SetTitle(_("List of blocklists"));
32     $this->SetSummary(_("List of blocklists"));
34     /* Result page will look like a headpage */
35     $this->SetHeadpageMode();
36     $this->SetInformation(_("This menu allows you to create, delete and edit selected blocklists. Having a large size of lists, you might prefer the range selectors on top of the select box."));
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" => _("Blocklist name")." / "._("Department"), "attach" => "style=''"));
47     $this->AddHeader(array("string" => _("Actions"), "attach" => "style='width:60px;border-right:0px;text-align:right;'" ));
49     /* Add Checkboxes / SubSearch checkbox */
50     $this->AddCheckBox("ShowSendBocklists"     , _("Select to see send blocklists"),    _("Show send blocklists"),true);
51     $this->AddCheckBox("ShowReceiveBlocklists" , _("Select to see receive blocklists"), _("Show receive blocklists"),true);
52   
53     $this->AddCheckBox(SEPERATOR);
54     $this->AddCheckBox("SubSearch",  _("Select to search within subtrees"), _("Ignore subtrees"), false);
56     /*                  Name                 ,Text                              ,Default  , Connect with alphabet  */
57     $this->AddRegex   ("Regex",     _("Regular expression for matching list names"),"*" , true);
58   }
60   function GenHeader()
61   {
62     /* Prepare departments,
63        which are shown in the listbox on top of the listbox
64      */
65     $options= "";
66     foreach ($this->config->idepartments as $key => $value){
67       if ($this->selectedBase == $key){
68         $options.= "<option selected='selected' value='$key'>$value</option>";
69       } else {
70         $options.= "<option value='$key'>$value</option>";
71       }
72     }
73     
74     /* NEW LIST MANAGMENT */
75     $listhead = "<div style='background:#F0F0F9;padding:5px;'>".
76       " <input class='center' type='image' src='images/list_root.png' align='middle' 
77           title='"._("Go to root department")."' name='dep_root' alt='".       _("Root")."'>&nbsp;".
78       " <input class='center' type='image' align='middle' src='images/list_back.png' 
79           title='"._("Go up one department")."' alt='"._("Up")."'              name='dep_back'>&nbsp;".
80       " <input class='center' type='image' align='middle' src='images/list_home.png' 
81           title='"._("Go to users department")."' alt='"._("Home")."'          name='dep_home'>&nbsp;".
82       " <input class='center' type='image' src='images/list_reload.png' align='middle' 
83           title='"._("Reload list")."' name='submit_department' alt='".      _("Submit")."'>&nbsp;".
84       " <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;".
85       " <input class='center' type='image' align='middle' src='images/list_new_blocklist.png' 
86           title='"._("Create new blocklist")."' alt='"._("New Blocklist")."' name='user_new'>&nbsp;".
87       " <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>".
88           "&nbsp;"._("Base")."&nbsp;<select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
89       " <input class='center' type='image' src='images/list_submit.png' align='middle' 
90           title='"._("Submit department")."' name='submit_department' alt='"._("Submit")."'>&nbsp;".
91       "</div>";
93     $this->SetListHeader($listhead);
94   }
96   function execute()
97   {
98     $this->ClearElementsList();
99     $this->GenHeader();
100   }
102   function setEntries($list)
103   {
104     $action= "<input class='center' type='image' src='images/edit.png' alt='"._("edit")."'     name='user_edit_%KEY%' title='"._("Edit user")."'>";
105     $action.= "<input class='center' type='image' src='images/edittrash.png' alt='"._("delete")."'   name='user_del_%KEY%' title='"._("Delete user")."'>";
107     // User and Template  Images
108     $blockimg = "<img class='center' src='images/list_blocklist.png' alt='User' title='%s'>";
109     $editlink = "<a href='?plug=".$_GET['plug']."&amp;id=%s&amp;act=edit_entry'>%s</a>";
111     /* Append to list */
112     foreach($list as $key => $val){
113       // Generate Array to Add
114       $display= "[".$val["cn"][0]."]";
115       $field1 = array("string" => sprintf($blockimg,$val['dn']), "attach" => "style='text-align:center;width:20px;'");
116       $field2 = array("string" => sprintf($editlink,$key,$display), "attach" => "style='' title='".preg_replace('/ /', '&nbsp;', @LDAP::fix($val['dn']))."'");
117       $field3 = array("string" => preg_replace("/%KEY%/", "$key", $action), "attach" => "style='width:60px;border-right:0px;text-align:right;'");
118       $this->AddElement( array($field1,$field2,$field3));
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 ?>