Code

Updated copy & paste acls, centralized checks
[gosa.git] / gosa-plugins / systems / admin / systems / class_divListSystem.inc
1 <?php
2 /*
3  * This code is part of GOsa (http://www.gosa-project.org)
4  * Copyright (C) 2003-2008 GONICUS GmbH
5  *
6  * ID: $$Id$$
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
23 class divListSystem extends MultiSelectWindow
24 {
26   /* Current base */
27   var $selectedBase       = "";
28   var $departments        = array();
30   /* Regex */
31   var $Regex              = "*";
32   var $UserRegex          = "*";
34   /* CheckBoxes, to change default values modify $this->AddCheckBox */
35   var $ShowServers;
36   var $ShowTerminals;
37   var $ShowWorkstations;
38   var $ShowWinWorkstations;
39   var $ShowPrinters;
40   var $ShowDevices;
41   var $ShowPhones;
43   /* Subsearch checkbox */
44   var $SubSearch;
46   var $parent             ;
47   var $ui                 ;
49   function divListSystem (&$config,$parent)
50   {
51     MultiSelectWindow::MultiSelectWindow($config, "System", array("server",
52                                                                   "workstation",
53                                                                   "terminal",
54                                                                   "phone",
55                                                                   "incoming",
56                                                                   "printer"));
58     $this->parent       = $parent;
59     $this->ui           = get_userinfo();
61     /* Set list strings */
62     $this->SetTitle(_("List of systems"));
63     $this->SetSummary(_("List of systems"));
65     /* Result page will look like a headpage */
66     $this->SetHeadpageMode();
68     $this->EnableAplhabet   (true);
70     /* Disable buttonsm */
71     $this->EnableCloseButton(false);
72     $this->EnableSaveButton (false);
74     /* Dynamic action col, depending on snapshot icons */
75     $action_col_size = 110;
76     if($this->parent->snapshotEnabled()){
77       $action_col_size += 38;
78     }
80     /* Toggle all selected / deselected */
81     $chk = "<input type='checkbox' id='select_all' name='select_all' title='"._("Select all")."'
82                onClick='toggle_all_(\"^item_selected_[0-9]*$\",\"select_all\");' >";
84     /* set Page header */
85     $this->AddHeader(array("string"=> $chk,          "attach"=>"style='width:20px;'"));
86     $this->AddHeader(array("string"=>"&nbsp;","attach"=>"style='width:20px;'"));
87     $this->AddHeader(array("string"=>_("Systems")." / "._("Department")));
89     /* Add header for selected FAI release, if fai is active */
90     if($this->parent->fai_activated){
91       $this->AddHeader(array("string"=>_("Release"),"attach"=>"style='width:100px;'"));
92     }
94     $this->AddHeader(array("string"=>_("Actions"),"attach"=>"style='width:".$action_col_size."px;border-right:0px;'"));
96     /*                  Text        ,Value    ,Name         ,Is selected */
97     $this->AddCheckBox("ShowServers",        
98         msgPool::selectToView(  _("servers")),            
99         sprintf(_("Show %s"),   _("servers")),true);
100     $this->AddCheckBox("ShowTerminals",       
101         msgPool::selectToView(  _("Linux terminals")),    
102         sprintf(_("Show %s"),   _("terminals")),true);
103     $this->AddCheckBox("ShowWorkstations",
104         msgPool::selectToView(  _("Linux workstations")), 
105         sprintf(_("Show %s"),   _("workstations")),true);
106     $this->AddCheckBox("ShowWinWorkstations", 
107         msgPool::selectToView(  _("MicroSoft Windows based workstations")), 
108         sprintf(_("Show %s"),   _("windows based workstations")),true);
109     $this->AddCheckBox("ShowPrinters",
110         msgPool::selectToView(  _("network printers")),   
111         sprintf(_("Show %s"),   _("network printers")) ,true);
112     $this->AddCheckBox("ShowPhones",
113         msgPool::selectToView(  _("VoIP phones")),        
114         sprintf(_("Show %s"),   _("phones")) ,true);
115     $this->AddCheckBox("ShowDevices",
116         msgPool::selectToView(  _("network devices")),    
117         sprintf(_("Show %s"),   _("network devices")),  true);
119     /* Add SubSearch checkbox */
120     $this->AddCheckBox(SEPERATOR);
121     $this->AddCheckBox("SubSearch",  msgPool::selectToView("","subsearch"), msgPool::selectToView("","subsearch_small"), false);
123     /*                  Name                 ,Text                              ,Default  , Connect with alphabet  */
124     $this->AddRegex   ("Regex",     _("Display systems matching"),"*" , true);
125     $this->AddRegex   ("UserRegex", _("Display systems of user"), "*" , false, "images/lists/search-user.png");
126   }
128   function GenHeader()
129   {
130    /* Prepare departments,
131        which are shown in the listbox on top of the listbox
132      */
133     $options= "";
135     /* Get all departments within this subtree */
136     $base = $this->config->current['BASE'];
138     /* Add base */
139     $tmp = array();
140     $tmp[] = array("dn"=>$this->config->current['BASE']);
141     $tmp=  array_merge($tmp,get_list("(&(|(ou=*)(description=*))(objectClass=gosaDepartment))", $this->module, $base,
142                     array("ou", "description"), GL_SIZELIMIT | GL_SUBSEARCH));
144     $deps = array();
145     foreach($tmp as $tm){
146       $deps[$tm['dn']] = $tm['dn'];
147     }
149     /* Load possible departments */
150     $ui= get_userinfo();
151     $first = "";
152     $found = FALSE;
153     $department = $departments = array();
154     foreach($this->module as $module){
155       $d = $ui->get_module_departments($module);      
156       foreach($d as $department){
157         $departments[$department] = $department;
158         
159       }
160     }
162     /* Load possible departments */
163     $ui= get_userinfo();
164     $ids = $this->config->idepartments;
165     $first = "";
166     $found = FALSE;
167     foreach($ids as $dep => $name){
168       if(isset($deps[$dep]) && in_array_ics($dep, $departments)){
170         /* Keep first base dn in mind, we could need this
171          *  info if no valid base was found
172          */
173         if(empty($first)) {
174           $first = $dep['dn'];
175         }
177         $value = $ids[$dep];
178         if ($this->selectedBase == $dep){
179           $found = TRUE;
180           $options.= "<option selected='selected' value='".$dep."'>$value</option>";
181         } else {
182           $options.= "<option value='".$dep."'>$value</option>";
183         }
184       }
185     }
188     /* The currently used base is not visible with your acl setup.
189      * Set base to first useable base.
190      */
191     if(!$found){
192       $this->selectedBase = $first;
193     }
195     /* If there is at least one c (Create) and one w (Write) acl in this combination
196         display the snapshot paste icon. BUT check the correct acls in the management plugin */
197     $all_module_acls = "";
198     foreach($this->module as $module){
199       $all_module_acls .= $ui->has_complete_category_acls($this->selectedBase,$module);
200     }
202     /* Must we add an additional seperator */
203     $add_sep = false;
204    
205     /* Add default header */
206     $listhead = MultiSelectWindow::get_default_header();
208     /* Add base selection */
209     $listhead .= _("Base")."&nbsp; <select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
210       " <input class='center' type='image' src='images/lists/submit.png' align='middle'
211       title='"._("Submit department")."' name='submit_department' alt='".           _("Submit")."'>&nbsp;";
213     /* Handle create icons */ 
214     $s = ".|"._("Actions")."|\n";
215     $s.= "..|<img src='images/lists/new.png' alt='' border='0' class='center'>".
216       "&nbsp;"._("Create")."|\n";
218     if(preg_match("/c/",$ui->get_permissions($this->selectedBase,"terminal/termgeneric"))){
219       $s.= "...|<img src='images/select_terminal.png' alt='' border='0' class='center'>".
220         "&nbsp;"._("Terminal")."|"."newsystem_terminal|\n";
221     }
222     if(preg_match("/c/",$ui->get_permissions($this->selectedBase,"workstation/workgeneric"))){
223       $s.= "...|<img src='images/select_workstation.png' alt='' border='0' class='center'>".
224         "&nbsp;"._("Workstation")."|"."newsystem_workstation|\n";
225     }
226     if(preg_match("/c/",$ui->get_permissions($this->selectedBase,"workstation/servgeneric"))){
227       $s.= "...|<img src='images/select_server.png' alt='' border='0' class='center'>".
228         "&nbsp;"._("Server")."|"."newsystem_server|\n";
229     }
230     if(preg_match("/c/",$ui->get_permissions($this->selectedBase,"phone/phoneGeneric"))){
231       $s.= "...|<img src='images/select_phone.png' alt='' border='0' class='center'>".
232         "&nbsp;"._("Phone")."|"."newsystem_phone|\n";
233     }
234     if(preg_match("/c/",$ui->get_permissions($this->selectedBase,"printer/printgeneric"))){
235       $s.= "...|<img src='images/select_printer.png' alt='' border='0' class='center'>".
236         "&nbsp;"._("Printer")."|"."newsystem_printer|\n";
237     }
238     if(preg_match("/c/",$ui->get_permissions($this->selectedBase,"component/componentGeneric"))){
239       $s.= "...|<img src='images/select_component.png' alt='' border='0' class='center'>".
240         "&nbsp;"._("Component")."|"."newsystem_component|\n";
241     }
243     $events  = DaemonEvent::get_event_types(SYSTEM_EVENT);
245     $s.= "..|<img src='images/rocket.png' alt='' border='0' class='center'>".
246       "&nbsp;"._("Trigger action")."|\n";
247     foreach($events['TRIGGERED'] as $name => $event){
248       $s.= "...|".$event['MenuImage']."&nbsp;".$event['s_Menu_Name']."|trigger_event_".$name."\n";
249     }
251     $s.= "..|<img src='images/clock.png' alt='' border='0' class='center'>".
252       "&nbsp;"._("Schedule action")."|\n";
253     foreach($events['SCHEDULED'] as $name =>  $event){
254       $s.= "...|".$event['MenuImage']."&nbsp;".$event['s_Menu_Name']."|schedule_event_".$name."\n";
255     }
257     $s.= "..|<img src='images/lists/trash.png' alt='' border='0' class='center'>".
258       "&nbsp;"._("Remove")."|"."remove_multiple|\n";
260     $s.= "..|<img src='images/lists/unlocked.png' alt='' border='0' class='center'>".
261       "&nbsp;"._("Activate systems")."|activate_multiple|\n";
263     /* Add Copy & Paste header */
264     $s .= $this->parent->get_copypaste_header($this->selectedBase,$this->module);
266     /* Add snapshot icons */
267     $s .= $this->parent->get_snapshot_header($this->selectedBase,$this->module);
269     $this->SetDropDownHeaderMenu($s);
270     $this->SetListHeader($listhead);
271   }
273   function execute()
274   {
275     $this->ClearElementsList();
276     $this->GenHeader();
277   }
279   function setEntries($terminals)
280   {
281     $img1  = "<img class='center' src='images/printer.png'            alt='C' title='"._("Cups Server")  ."'>";
282     $img2  = "<img class='center' src='images/scanner.png'            alt='L' title='"._("Log Db") ."'>";
283     $img3  = "<img class='center' src='images/select_terminal.png'    alt='L' title='"._("Syslog Server") ."'>";
284     $img4  = "<img class='center' src='images/mailto.png'             alt='M' title='"._("Mail Server")  ."'>";
285     $img5  = "<img class='center' src='images/select_phone.png'       alt='I' title='"._("Imap Server") ."'>";
286     $img6  = "<img class='center' src='images/fax_small.png'          alt='F' title='"._("Nfs Server")   ."'>";
287     $img7  = "<img class='center' src='images/select_winstation.png'  alt='K' title='"._("Kerberos Server") ."'>";
288     $img8  = "<img class='center' src='images/select_phone.png'       alt='A' title='"._("Asterisk Server") ."'>";
289     $img9  = "<img class='center' src='images/fax_small.png'          alt='F' title='"._("Fax Server") ."'>";
290     $img10 = "<img class='center' src='images/save.png'               alt='L' title='"._("Ldap Server") ."'>";
292     $empty    ="<img src='images/empty.png' style='width:16px ; height: 16px;' class='center' alt=''>";
294     /* Dynamic action col, depending on snapshot icons */
295     $action_col_size = 110;
296     if($this->parent->snapshotEnabled()){
297       $action_col_size += 38;
298     }
300     // User and Template  Images
301     $editlink = "<a href='?plug=".$_GET['plug']."&amp;id=%s&amp;act=edit_entry'>%s</a>";
303     /* ACL mapping */
304     $ui = get_userinfo();
305     $tabs = array(
306           "terminal"    => array("CLASS"=>"TERMTABS",     "TABCLASS" =>"termtabs",      "ACL"=> "terminal/termgeneric"),
307           "workstation" => array("CLASS"=>"WORKTABS",     "TABCLASS" =>"worktabs",      "ACL"=> "workstation/workgeneric"),
308           "server"      => array("CLASS"=>"SERVTABS",     "TABCLASS" =>"servtabs",      "ACL"=> "server/servgeneric"),
309           "printer"     => array("CLASS"=>"PRINTTABS",    "TABCLASS" =>"printtabs",     "ACL"=> "printer/printgeneric"),
310           "phone"       => array("CLASS"=>"PHONETABS",    "TABCLASS" =>"phonetabs",     "ACL"=> "phone/phoneGeneric"),
311           "winstation"  => array("CLASS"=>"WINTABS",      "TABCLASS" =>"wintabs",       "ACL"=> "winworkstation/wingeneric"),
312           "incoming"    => array("CLASS"=>"",             "TABCLASS" =>"",              "ACL"=> "incoming/systems"),
313           "component"   => array("CLASS"=>"COMPONENTTABS","TABCLASS" =>"componenttabs", "ACL"=> "component/componentGeneric"));
316     $cnts = array("component" => 0 , "terminal" => 0 , "workstation" => 0 , 
317                   "printer" => 0 , "phone" => 0 , "server" => 0,
318                   "NewDevice" => 0, "winstation"=> 0);
321     /* Get list of all objectGroups and their member and release configuration 
322      */
323     $ogroups = array();
324     if($this->parent->fai_activated){
325       $ogroups = get_sub_list("(&(objectClass=gosaGroupOfNames)(FAIclass=*)(member=*))",array("ogroups"),
326           get_ou("ogroupou"),$this->config->current['BASE'],array("FAIclass","member","cn"),GL_NO_ACL_CHECK | GL_SUBSEARCH);
327       foreach($ogroups as $ogroup){
328         for($i = 0 ; $i < $ogroup['member']['count'] ; $i++){
329           if(preg_match("/:/",$ogroup['FAIclass'][0])) {
330             if(!isset($og_list[$ogroup['member'][$i]])){
331               $ogs_release[$ogroup['member'][$i]]['STR'] = ""; 
332               $ogs_release[$ogroup['member'][$i]]['CN'] = ""; 
333             }
334             $ogs_release[$ogroup['member'][$i]]['STR'] .= preg_replace("/^.*:/","",$ogroup['FAIclass'][0]).", ";
335             $ogs_release[$ogroup['member'][$i]]['CN']  .= $ogroup['cn'][0].", ";
336           }
337         }
338       }
339     }
341     // Test Every Entry and generate divlist Array
342     foreach($terminals as $key => $val){
344       /* Get system type, it is used to fetch the acls for the current object.
345           "winstation" acls are stored as 2winworkstation", so we have to map this here */
346       $type     = $this->parent->get_system_type($val);
347       if($type == "winstation") {
348         $acl_type = "winworkstation";
349       }else{
350         $acl_type = $type;
351       }
353       /* Map NewDevice acls to workstation acls */
354       if($type == "NewDevice" || $type == "ArpNewDevice"){
355         $type     = "incoming";
356         $acl_type = "incoming";
357       }
359       $s_acl    = $tabs[$type]['ACL'];
360       $category = preg_replace("/\/.*$/","",$s_acl);
361       $class    = preg_replace("/^.*\//","",$s_acl);
363       /* Get complete category acls */
364       $acl_all  = $ui->has_complete_category_acls($val['dn'],$acl_type) ;
365   
366       /* Get specific generic acls */
367       $acl      = $ui->get_permissions($val['dn'],$tabs[$type]['ACL']);
369       $action ="";
370       if($ui->is_cutable($val['dn'],$category,$class) && $this->parent->CopyPasteHandler){
371         $action .= "<input class='center' type='image'
372           src='images/lists/cut.png' alt='"._("cut")."' name='cut_%KEY%' title='"._("Cut this entry")."'>&nbsp;";
373       }else{
374         $action.="<img src='images/empty.png' alt=' ' class='center'>&nbsp;";
375       }
377       if($ui->is_copyable($val['dn'],$category,$class) && $this->parent->CopyPasteHandler){
378         $action.= "<input class='center' type='image'
379           src='images/lists/copy.png' alt='"._("copy")."' name='copy_%KEY%' title='"._("Copy this entry")."'>&nbsp;";
380       }else{
381         $action.="<img src='images/empty.png' alt=' ' class='center'>&nbsp;";
382       }
385       $action.= "<input class='center' type='image' src='images/lists/edit.png' 
386                     alt='"._("edit")."'     name='system_edit_%KEY%' title='"._("Edit system")."'>";
388       $action.= $this->parent->get_snapshot_action($val['dn'],$acl_type);
390       /* Generate picture list, which is currently disabled */
391       if(in_array("goCupsServer"    ,$val['objectClass'])) $cups    = $img1;   else $cups  =$empty;
392       if(in_array("goLogDBServer"   ,$val['objectClass'])) $logdb   = $img2;   else $logdb =$empty;
393       if(in_array("goSyslogServer"  ,$val['objectClass'])) $syslog  = $img3;   else $syslog=$empty;
394       if(in_array("goImapServer"    ,$val['objectClass'])) $imap    = $img4;   else $imap  =$empty;
395       if(in_array("sambaSamAccount" ,$val['objectClass'])) $samba   = $img5;   else $samba =$empty;
396       if(in_array("goShareServer"   ,$val['objectClass'])) $nfs     = $img6;   else $nfs   =$empty;
397       if(in_array("goKrbServer"     ,$val['objectClass'])) $krb     = $img7;   else $krb   =$empty;
398       if(in_array("goFonServer"     ,$val['objectClass'])) $fon     = $img8;   else $fon   =$empty;
399       if(in_array("goFaxServer"     ,$val['objectClass'])) $fax     = $img9;   else $fax   =$empty;
400       if(in_array("goLdapServer"    ,$val['objectClass'])) $ldap     = $img10;   else $ldap   =$empty;
402       $pics = $cups.$logdb.$syslog.$imap.$samba.$nfs.$krb.$fon.$fax.$ldap;
403       $pics = ""; // Pictures currently hidden
405       $val['cn'][0]= preg_replace('/\$$/', '', $val['cn'][0]);
407       // Generate Array to Add
408       $dsc= "";
409       if (isset($val['description'][0])){
410         $dsc= " [".$val['description'][0]."]";
411       }
412       if((isset($val['is_new']))&&(!empty($val['is_new']))){
413         $display= $val["cn"][0]." ".$val['is_new'].$dsc;
414       }else{
415         $display= $val["cn"][0].$dsc;
416       }
418       /* Check if this is a terminal/workstation && if we are allowed to change the gotoRootPasswd */
419       $display_key_for = array("terminal","workstation","server","component");
420       $pwd_acl = $ui->get_permissions($val['dn'],$tabs[$type]['ACL'],"userPassword");
421       if(preg_match("/w/",$pwd_acl) && in_array($type,$display_key_for)){
422         $action2 = "<input class='center' type='image' src='images/lists/key.png' alt='"._("Password")."'   name='system_setpwd_%KEY%' title='"._("Set password")."'>";
423       }else{
424         $action2 = $empty;
425       }
427       if(in_array("gotoWorkstation",$val['objectClass'])){
428         $action2= "<input class='center' type='image' src='images/cdrom.png' alt='"._("Create CD")."'   
429                       name='gen_cd_%KEY%' title='"._("Create FAI CD")."'>&nbsp;".$action2;
430       }else{
431         $action2= $empty.$action2;
432       }
434       if(isset($val['message'])){
435         $display.= "  (".$val['message'].")";
436       }
438       $img    = $this->parent->convert_list($val);
440       /* Cutted objects should be displayed in light grey */
441       if($this->parent->CopyPasteHandler){
442         foreach($this->parent->CopyPasteHandler->queue as $queue_key => $queue_data){
443           if($queue_data['dn'] == $val['dn']) {
444             $display = "<font color='#999999'>".$display."</font>";
445             break;
446           }
447         }
448       }
450       $type = $this->parent->get_system_type($val);
451       if($type == "ArpNewDevice"){
452         $type = "NewDevice";
453       }
454       $cnts[$type] ++;
456       /* Create each field */
457       $field0 = array("string" => "<input type='checkbox' id='item_selected_".$key."' name='item_selected_".$key."'>" ,
458           "attach" => "style='width:20px;'");
459       $field1 = array("string" => sprintf($img['img'],$val['dn']),
460           "attach" => "style='text-align:center;width:20px;'");
461       $field2 = array("string" => sprintf($editlink,$key,$display),
462           "attach" => "style='' title='".preg_replace('/ /', '&nbsp;', @LDAP::fix($val['dn']))."'");
463       $field3 = array("string" => preg_replace("/%KEY%/", "$key", $action2.$action),
464           "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'");
466       if($this->parent->fai_activated){
468         $release ="&nbsp;";
469         $release_attach = ""; 
470         if(isset($val['FAIclass'][0]) && preg_match("/:/",$val['FAIclass'][0])){
471           $release        = preg_replace("/^.*:/","",$val['FAIclass'][0]);
472           $release_attach = ""; 
473         }elseif(isset($ogs_release[$val['dn']])){
474           $release = trim($ogs_release[$val['dn']]['STR'],", ").
475             "&nbsp;<img src='images/select_ogroup.png' class='center' alt='' 
476             title='".sprintf(_("Inherited from %s"),trim($ogs_release[$val['dn']]['CN'],", "))."'>";
477           $release_attach = "title='".sprintf(_("Inherited from %s"),trim($ogs_release[$val['dn']]['CN'],", "))."'"; 
478         }
479         $field2a = array("string" => $release,"attach"=>$release_attach." style='width:100px;'");
480         $this->AddElement( array($field0,$field1,$field2,$field2a,$field3));
481       }else{
482         $this->AddElement( array($field0,$field1,$field2,$field3));
483       }
484     }
486     /* Create summary string for list footer */
487     $num_deps=0;
488     if(!$this->SubSearch){
489       $num_deps = count($this->Added_Departments);
490     }
492     $num_ser_str = sprintf(_("Number of listed '%s'"),_("servers"));
493     $num_ws_str  = sprintf(_("Number of listed '%s'"),_("workstations"));
494     $num_ter_str = sprintf(_("Number of listed '%s'"),_("terminals"));
495     $num_pho_str = sprintf(_("Number of listed '%s'"),_("phones"));
496     $num_prt_str = sprintf(_("Number of listed '%s'"),_("printers"));
497     $num_com_str = sprintf(_("Number of listed '%s'"),_("network components"));
498     $num_new_str = sprintf(_("Number of listed '%s'"),_("new devices"));
499     $num_wws_str = sprintf(_("Number of listed '%s'"),_("windows workstations"));
500     $num_dep_str = sprintf(_("Number of listed '%s'"),_("departments"));
502     $str = "<img class='center' src='images/select_server.png'
503       title='".$num_ser_str."' alt='".$num_ser_str."'>&nbsp;".$cnts['server']."&nbsp;&nbsp;&nbsp;&nbsp;";
504     $str.= "<img class='center' src='images/select_workstation.png'
505       title='".$num_ws_str."' alt='".$num_ws_str."'>&nbsp;".$cnts['workstation']."&nbsp;&nbsp;&nbsp;&nbsp;";
506     $str.= "<img class='center' src='images/select_terminal.png'
507       title='".$num_ter_str."' alt='".$num_ter_str."'>&nbsp;".$cnts['terminal']."&nbsp;&nbsp;&nbsp;&nbsp;";
508     $str.= "<img class='center' src='images/select_phone.png'
509       title='".$num_pho_str."' alt='".$num_pho_str."'>&nbsp;".$cnts['phone']."&nbsp;&nbsp;&nbsp;&nbsp;";
510     $str.= "<img class='center' src='images/select_printer.png'
511       title='".$num_prt_str."' alt='".$num_prt_str."'>&nbsp;".$cnts['printer']."&nbsp;&nbsp;&nbsp;&nbsp;";
512     $str.= "<img class='center' src='images/select_component.png'
513       title='".$num_com_str."' alt='".$num_com_str."'>&nbsp;".$cnts['component']."&nbsp;&nbsp;&nbsp;&nbsp;";
514     $str.= "<img class='center' src='images/select_newsystem.png'
515       title='".$num_new_str."' alt='".$num_new_str."'>&nbsp;".$cnts['NewDevice']."&nbsp;&nbsp;&nbsp;&nbsp;";
516     $str.= "<img class='center' src='images/select_winstation.png'
517       title='".$num_wws_str."' alt='".$num_wws_str."'>&nbsp;".$cnts['winstation']."&nbsp;&nbsp;&nbsp;&nbsp;";
518     $str.= "<img class='center' src='images/lists/folder.png'
519       title='".$num_dep_str."' alt='".$num_dep_str."'>&nbsp;".$num_deps."&nbsp;&nbsp;&nbsp;&nbsp;";
521     $this->set_List_Bottom_Info($str);
522   }
525   function Save()
526   {
527     MultiSelectWindow :: Save();  
528   }
531   function save_object()
532   {
533     /* Save automatic created POSTs like regex, checkboxes */
534     MultiSelectWindow :: save_object();  
537   }
539 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
540 ?>