Code

Updated system Management to avoid initializing unknown plugins.
[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 = 120;
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     if($this->parent->si_active){
244       $events  = DaemonEvent::get_event_types(SYSTEM_EVENT);
246       $s.= "..|<img src='images/rocket.png' alt='' border='0' class='center'>".
247         "&nbsp;"._("Trigger action")."|\n";
248       foreach($events['TRIGGERED'] as $name => $event){
249         $s.= "...|".$event['MenuImage']."&nbsp;".$event['s_Menu_Name']."|trigger_event_".$name."\n";
250       }
252       $s.= "..|<img src='images/clock.png' alt='' border='0' class='center'>".
253         "&nbsp;"._("Schedule action")."|\n";
254       foreach($events['SCHEDULED'] as $name =>  $event){
255         $s.= "...|".$event['MenuImage']."&nbsp;".$event['s_Menu_Name']."|schedule_event_".$name."\n";
256       }
257     }
259     $s.= "..|<img src='images/lists/trash.png' alt='' border='0' class='center'>".
260       "&nbsp;"._("Remove")."|"."remove_multiple|\n";
262     $s.= "..|<img src='images/lists/unlocked.png' alt='' border='0' class='center'>".
263       "&nbsp;"._("Activate systems")."|activate_multiple|\n";
265     /* Add Copy & Paste header */
266     $s .= $this->parent->get_copypaste_header($this->selectedBase,$this->module);
268     /* Add snapshot icons */
269     $s .= $this->parent->get_snapshot_header($this->selectedBase,$this->module);
271     $this->SetDropDownHeaderMenu($s);
272     $this->SetListHeader($listhead);
273   }
275   function execute()
276   {
277     $this->ClearElementsList();
278     $this->GenHeader();
279   }
281   function setEntries($terminals)
282   {
283     $img1  = "<img class='center' src='images/printer.png'            alt='C' title='"._("Cups Server")  ."'>";
284     $img2  = "<img class='center' src='images/scanner.png'            alt='L' title='"._("Log Db") ."'>";
285     $img3  = "<img class='center' src='images/select_terminal.png'    alt='L' title='"._("Syslog Server") ."'>";
286     $img4  = "<img class='center' src='images/mailto.png'             alt='M' title='"._("Mail Server")  ."'>";
287     $img5  = "<img class='center' src='images/select_phone.png'       alt='I' title='"._("Imap Server") ."'>";
288     $img6  = "<img class='center' src='images/fax_small.png'          alt='F' title='"._("Nfs Server")   ."'>";
289     $img7  = "<img class='center' src='images/select_winstation.png'  alt='K' title='"._("Kerberos Server") ."'>";
290     $img8  = "<img class='center' src='images/select_phone.png'       alt='A' title='"._("Asterisk Server") ."'>";
291     $img9  = "<img class='center' src='images/fax_small.png'          alt='F' title='"._("Fax Server") ."'>";
292     $img10 = "<img class='center' src='images/save.png'               alt='L' title='"._("Ldap Server") ."'>";
294     $empty    ="<img src='images/empty.png' style='width:16px ; height: 16px;' class='center' alt=''>";
296     /* Dynamic action col, depending on snapshot icons */
297     $action_col_size = 120;
298     if($this->parent->snapshotEnabled()){
299       $action_col_size += 38;
300     }
302     // User and Template  Images
303     $editlink = "<a href='?plug=".$_GET['plug']."&amp;id=%s&amp;act=edit_entry'>%s</a>";
305     /* ACL mapping */
306     $ui = get_userinfo();
307     $tabs = array(
308           "terminal"    => array("CLASS"=>"TERMTABS",     "TABCLASS" =>"termtabs",      "ACL"=> "terminal/termgeneric"),
309           "workstation" => array("CLASS"=>"WORKTABS",     "TABCLASS" =>"worktabs",      "ACL"=> "workstation/workgeneric"),
310           "server"      => array("CLASS"=>"SERVTABS",     "TABCLASS" =>"servtabs",      "ACL"=> "server/servgeneric"),
311           "printer"     => array("CLASS"=>"PRINTTABS",    "TABCLASS" =>"printtabs",     "ACL"=> "printer/printgeneric"),
312           "phone"       => array("CLASS"=>"PHONETABS",    "TABCLASS" =>"phonetabs",     "ACL"=> "phone/phoneGeneric"),
313           "winstation"  => array("CLASS"=>"WINTABS",      "TABCLASS" =>"wintabs",       "ACL"=> "winworkstation/wingeneric"),
314           "incoming"    => array("CLASS"=>"",             "TABCLASS" =>"",              "ACL"=> "incoming/systems"),
315           "component"   => array("CLASS"=>"COMPONENTTABS","TABCLASS" =>"componenttabs", "ACL"=> "component/componentGeneric"));
318     $cnts = array("component" => 0 , "terminal" => 0 , "workstation" => 0 , 
319                   "printer" => 0 , "phone" => 0 , "server" => 0,
320                   "NewDevice" => 0, "winstation"=> 0);
323     /* Get list of all objectGroups and their member and release configuration 
324      */
325     $ogroups = array();
326     if($this->parent->fai_activated){
327       $ogroups = get_sub_list("(&(objectClass=gosaGroupOfNames)(FAIclass=*)(member=*))",array("ogroups"),
328           get_ou("ogroupou"),$this->config->current['BASE'],array("FAIclass","member","cn"),GL_NO_ACL_CHECK | GL_SUBSEARCH);
329       foreach($ogroups as $ogroup){
330         for($i = 0 ; $i < $ogroup['member']['count'] ; $i++){
331           if(preg_match("/:/",$ogroup['FAIclass'][0])) {
332             if(!isset($og_list[$ogroup['member'][$i]])){
333               $ogs_release[$ogroup['member'][$i]]['STR'] = ""; 
334               $ogs_release[$ogroup['member'][$i]]['CN'] = ""; 
335             }
336             $ogs_release[$ogroup['member'][$i]]['STR'] .= preg_replace("/^.*:/","",$ogroup['FAIclass'][0]).", ";
337             $ogs_release[$ogroup['member'][$i]]['CN']  .= $ogroup['cn'][0].", ";
338           }
339         }
340       }
341     }
343     // Test Every Entry and generate divlist Array
344     foreach($terminals as $key => $val){
346       /* Get system type, it is used to fetch the acls for the current object.
347           "winstation" acls are stored as 2winworkstation", so we have to map this here */
348       $type     = $this->parent->get_system_type($val);
349       if($type == "winstation") {
350         $acl_type = "winworkstation";
351       }else{
352         $acl_type = $type;
353       }
355       /* Map NewDevice acls to workstation acls */
356       if($type == "NewDevice" || $type == "ArpNewDevice"){
357         $type     = "incoming";
358         $acl_type = "incoming";
359       }
361       $s_acl    = $tabs[$type]['ACL'];
362       $category = preg_replace("/\/.*$/","",$s_acl);
363       $class    = preg_replace("/^.*\//","",$s_acl);
365       /* Get complete category acls */
366       $acl_all  = $ui->has_complete_category_acls($val['dn'],$acl_type) ;
367   
368       /* Get specific generic acls */
369       $acl      = $ui->get_permissions($val['dn'],$tabs[$type]['ACL']);
371       /* Add copy & cut functionality */
372       $action= $this->parent->get_copypaste_action($val['dn'],$category,$class);
374       $action.= "<input class='center' type='image' src='images/lists/edit.png' 
375                     alt='"._("edit")."'     name='system_edit_%KEY%' title='"._("Edit system")."'>";
377       $action.= $this->parent->get_snapshot_action($val['dn'],$acl_type);
379       if(preg_match("/d/",$acl)){
380         $action.= "<input class='center' type='image' src='images/lists/trash.png'
381           alt='"._("delete")."'   name='system_del_%KEY%' title='"._("Delete system")."'>";
382       }else{
383         $action.= $empty;
384       }
387       /* Generate picture list, which is currently disabled */
388       if(in_array("goCupsServer"    ,$val['objectClass'])) $cups    = $img1;   else $cups  =$empty;
389       if(in_array("goLogDBServer"   ,$val['objectClass'])) $logdb   = $img2;   else $logdb =$empty;
390       if(in_array("goSyslogServer"  ,$val['objectClass'])) $syslog  = $img3;   else $syslog=$empty;
391       if(in_array("goImapServer"    ,$val['objectClass'])) $imap    = $img4;   else $imap  =$empty;
392       if(in_array("sambaSamAccount" ,$val['objectClass'])) $samba   = $img5;   else $samba =$empty;
393       if(in_array("goShareServer"   ,$val['objectClass'])) $nfs     = $img6;   else $nfs   =$empty;
394       if(in_array("goKrbServer"     ,$val['objectClass'])) $krb     = $img7;   else $krb   =$empty;
395       if(in_array("goFonServer"     ,$val['objectClass'])) $fon     = $img8;   else $fon   =$empty;
396       if(in_array("goFaxServer"     ,$val['objectClass'])) $fax     = $img9;   else $fax   =$empty;
397       if(in_array("goLdapServer"    ,$val['objectClass'])) $ldap     = $img10;   else $ldap   =$empty;
399       $pics = $cups.$logdb.$syslog.$imap.$samba.$nfs.$krb.$fon.$fax.$ldap;
400       $pics = ""; // Pictures currently hidden
402       $val['cn'][0]= preg_replace('/\$$/', '', $val['cn'][0]);
404       // Generate Array to Add
405       $dsc= "";
406       if (isset($val['description'][0])){
407         $dsc= " [".$val['description'][0]."]";
408       }
409       if((isset($val['is_new']))&&(!empty($val['is_new']))){
410         $display= $val["cn"][0]." ".$val['is_new'].$dsc;
411       }else{
412         $display= $val["cn"][0].$dsc;
413       }
415       /* Check if this is a terminal/workstation && if we are allowed to change the gotoRootPasswd */
416       $display_key_for = array("terminal","workstation","server","component");
417       $pwd_acl = $ui->get_permissions($val['dn'],$tabs[$type]['ACL'],"userPassword");
418       if(preg_match("/w/",$pwd_acl) && in_array($type,$display_key_for)){
419         $action2 = "<input class='center' type='image' src='images/lists/key.png' alt='"._("Password")."'   name='system_setpwd_%KEY%' title='"._("Set password")."'>";
420       }else{
421         $action2 = $empty;
422       }
424       if(in_array("gotoWorkstation",$val['objectClass'])){
425         $action2= "<input class='center' type='image' src='images/cdrom.png' alt='"._("Create CD")."'   
426                       name='gen_cd_%KEY%' title='"._("Create FAI CD")."'>&nbsp;".$action2;
427       }else{
428         $action2= $empty.$action2;
429       }
431       if(isset($val['message'])){
432         $display.= "  (".$val['message'].")";
433       }
435       $img    = $this->parent->convert_list($val);
437       /* Cutted objects should be displayed in light grey */
438       if($this->parent->CopyPasteHandler){
439         foreach($this->parent->CopyPasteHandler->queue as $queue_key => $queue_data){
440           if($queue_data['dn'] == $val['dn']) {
441             $display = "<font color='#999999'>".$display."</font>";
442             break;
443           }
444         }
445       }
447       $type = $this->parent->get_system_type($val);
448       if($type == "ArpNewDevice"){
449         $type = "NewDevice";
450       }
451       $cnts[$type] ++;
453       /* Create each field */
454       $field0 = array("string" => "<input type='checkbox' id='item_selected_".$key."' name='item_selected_".$key."'>" ,
455           "attach" => "style='width:20px;'");
456       $field1 = array("string" => sprintf($img['img'],$val['dn']),
457           "attach" => "style='text-align:center;width:20px;'");
458       $field2 = array("string" => sprintf($editlink,$key,$display),
459           "attach" => "style='' title='".preg_replace('/ /', '&nbsp;', @LDAP::fix($val['dn']))."'");
460       $field3 = array("string" => preg_replace("/%KEY%/", "$key", $action2.$action),
461           "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'");
463       if($this->parent->fai_activated){
465         $release ="&nbsp;";
466         $release_attach = ""; 
467         if(isset($val['FAIclass'][0]) && preg_match("/:/",$val['FAIclass'][0])){
468           $release        = preg_replace("/^.*:/","",$val['FAIclass'][0]);
469           $release_attach = ""; 
470         }elseif(isset($ogs_release[$val['dn']])){
471           $release = trim($ogs_release[$val['dn']]['STR'],", ").
472             "&nbsp;<img src='images/select_ogroup.png' class='center' alt='' 
473             title='".sprintf(_("Inherited from %s"),trim($ogs_release[$val['dn']]['CN'],", "))."'>";
474           $release_attach = "title='".sprintf(_("Inherited from %s"),trim($ogs_release[$val['dn']]['CN'],", "))."'"; 
475         }
476         $field2a = array("string" => $release,"attach"=>$release_attach." style='width:100px;'");
477         $this->AddElement( array($field0,$field1,$field2,$field2a,$field3));
478       }else{
479         $this->AddElement( array($field0,$field1,$field2,$field3));
480       }
481     }
483     /* Create summary string for list footer */
484     $num_deps=0;
485     if(!$this->SubSearch){
486       $num_deps = count($this->Added_Departments);
487     }
489     $num_ser_str = sprintf(_("Number of listed '%s'"),_("servers"));
490     $num_ws_str  = sprintf(_("Number of listed '%s'"),_("workstations"));
491     $num_ter_str = sprintf(_("Number of listed '%s'"),_("terminals"));
492     $num_pho_str = sprintf(_("Number of listed '%s'"),_("phones"));
493     $num_prt_str = sprintf(_("Number of listed '%s'"),_("printers"));
494     $num_com_str = sprintf(_("Number of listed '%s'"),_("network components"));
495     $num_new_str = sprintf(_("Number of listed '%s'"),_("new devices"));
496     $num_wws_str = sprintf(_("Number of listed '%s'"),_("windows workstations"));
497     $num_dep_str = sprintf(_("Number of listed '%s'"),_("departments"));
499     $str = "<img class='center' src='images/select_server.png'
500       title='".$num_ser_str."' alt='".$num_ser_str."'>&nbsp;".$cnts['server']."&nbsp;&nbsp;&nbsp;&nbsp;";
501     $str.= "<img class='center' src='images/select_workstation.png'
502       title='".$num_ws_str."' alt='".$num_ws_str."'>&nbsp;".$cnts['workstation']."&nbsp;&nbsp;&nbsp;&nbsp;";
503     $str.= "<img class='center' src='images/select_terminal.png'
504       title='".$num_ter_str."' alt='".$num_ter_str."'>&nbsp;".$cnts['terminal']."&nbsp;&nbsp;&nbsp;&nbsp;";
505     $str.= "<img class='center' src='images/select_phone.png'
506       title='".$num_pho_str."' alt='".$num_pho_str."'>&nbsp;".$cnts['phone']."&nbsp;&nbsp;&nbsp;&nbsp;";
507     $str.= "<img class='center' src='images/select_printer.png'
508       title='".$num_prt_str."' alt='".$num_prt_str."'>&nbsp;".$cnts['printer']."&nbsp;&nbsp;&nbsp;&nbsp;";
509     $str.= "<img class='center' src='images/select_component.png'
510       title='".$num_com_str."' alt='".$num_com_str."'>&nbsp;".$cnts['component']."&nbsp;&nbsp;&nbsp;&nbsp;";
511     $str.= "<img class='center' src='images/select_newsystem.png'
512       title='".$num_new_str."' alt='".$num_new_str."'>&nbsp;".$cnts['NewDevice']."&nbsp;&nbsp;&nbsp;&nbsp;";
513     $str.= "<img class='center' src='images/select_winstation.png'
514       title='".$num_wws_str."' alt='".$num_wws_str."'>&nbsp;".$cnts['winstation']."&nbsp;&nbsp;&nbsp;&nbsp;";
515     $str.= "<img class='center' src='images/lists/folder.png'
516       title='".$num_dep_str."' alt='".$num_dep_str."'>&nbsp;".$num_deps."&nbsp;&nbsp;&nbsp;&nbsp;";
518     $this->set_List_Bottom_Info($str);
519   }
522   function Save()
523   {
524     MultiSelectWindow :: Save();  
525   }
528   function save_object()
529   {
530     /* Save automatic created POSTs like regex, checkboxes */
531     MultiSelectWindow :: save_object();  
534   }
536 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
537 ?>