Code

Updated snapshot handling
[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     if(is_object($this->parent->CopyPasteHandler) && preg_match("/r/",$all_module_acls)){
264       $s.= "..|---|\n";
265       $s.= "..|<img src='images/lists/copy.png' alt='' border='0' class='center'>".
266         "&nbsp;"._("Copy")."|"."multiple_copy_systems|\n";
267       $s.= "..|<img src='images/lists/cut.png' alt='' border='0' class='center'>".
268         "&nbsp;"._("Cut")."|"."multiple_cut_systems|\n";
269     }
271     /* Copy & paste icons */
272     if(is_object($this->parent->CopyPasteHandler) && $this->parent->CopyPasteHandler->entries_queued()){
273       $img = "<img border='0' class='center' src='images/lists/paste.png' alt=''>";
274       $s.="..|".$img."&nbsp;"._("Paste")."|editPaste|\n";
275     }else{
276       $img = "<img border='0' class='center' src='images/lists/paste-grey.png' alt=''>";
277       $s.="..|".$img."&nbsp;"._("Paste")."\n";
278     }
280     /* Add snapshot icons */
281     $s .= $this->parent->get_snapshot_header($this->selectedBase,$this->module);
283     $this->SetDropDownHeaderMenu($s);
284     $this->SetListHeader($listhead);
285   }
287   function execute()
288   {
289     $this->ClearElementsList();
290     $this->GenHeader();
291   }
293   function setEntries($terminals)
294   {
295     $img1  = "<img class='center' src='images/printer.png'            alt='C' title='"._("Cups Server")  ."'>";
296     $img2  = "<img class='center' src='images/scanner.png'            alt='L' title='"._("Log Db") ."'>";
297     $img3  = "<img class='center' src='images/select_terminal.png'    alt='L' title='"._("Syslog Server") ."'>";
298     $img4  = "<img class='center' src='images/mailto.png'             alt='M' title='"._("Mail Server")  ."'>";
299     $img5  = "<img class='center' src='images/select_phone.png'       alt='I' title='"._("Imap Server") ."'>";
300     $img6  = "<img class='center' src='images/fax_small.png'          alt='F' title='"._("Nfs Server")   ."'>";
301     $img7  = "<img class='center' src='images/select_winstation.png'  alt='K' title='"._("Kerberos Server") ."'>";
302     $img8  = "<img class='center' src='images/select_phone.png'       alt='A' title='"._("Asterisk Server") ."'>";
303     $img9  = "<img class='center' src='images/fax_small.png'          alt='F' title='"._("Fax Server") ."'>";
304     $img10 = "<img class='center' src='images/save.png'               alt='L' title='"._("Ldap Server") ."'>";
306     $empty    ="<img src='images/empty.png' style='width:16px ; height: 16px;' class='center' alt=''>";
308     /* Dynamic action col, depending on snapshot icons */
309     $action_col_size = 110;
310     if($this->parent->snapshotEnabled()){
311       $action_col_size += 38;
312     }
314     // User and Template  Images
315     $editlink = "<a href='?plug=".$_GET['plug']."&amp;id=%s&amp;act=edit_entry'>%s</a>";
317     /* ACL mapping */
318     $ui = get_userinfo();
319     $tabs = array(
320           "terminal"    => array("CLASS"=>"TERMTABS",     "TABCLASS" =>"termtabs",      "ACL"=> "terminal/termgeneric"),
321           "workstation" => array("CLASS"=>"WORKTABS",     "TABCLASS" =>"worktabs",      "ACL"=> "workstation/workgeneric"),
322           "server"      => array("CLASS"=>"SERVTABS",     "TABCLASS" =>"servtabs",      "ACL"=> "server/servgeneric"),
323           "printer"     => array("CLASS"=>"PRINTTABS",    "TABCLASS" =>"printtabs",     "ACL"=> "printer/printgeneric"),
324           "phone"       => array("CLASS"=>"PHONETABS",    "TABCLASS" =>"phonetabs",     "ACL"=> "phone/phoneGeneric"),
325           "winstation"  => array("CLASS"=>"WINTABS",      "TABCLASS" =>"wintabs",       "ACL"=> "winworkstation/wingeneric"),
326           "incoming"    => array("CLASS"=>"",             "TABCLASS" =>"",              "ACL"=> "incoming/systems"),
327           "component"   => array("CLASS"=>"COMPONENTTABS","TABCLASS" =>"componenttabs", "ACL"=> "component/componentGeneric"));
330     $cnts = array("component" => 0 , "terminal" => 0 , "workstation" => 0 , 
331                   "printer" => 0 , "phone" => 0 , "server" => 0,
332                   "NewDevice" => 0, "winstation"=> 0);
335     /* Get list of all objectGroups and their member and release configuration 
336      */
337     $ogroups = array();
338     if($this->parent->fai_activated){
339       $ogroups = get_sub_list("(&(objectClass=gosaGroupOfNames)(FAIclass=*)(member=*))",array("ogroups"),
340           get_ou("ogroupou"),$this->config->current['BASE'],array("FAIclass","member","cn"),GL_NO_ACL_CHECK | GL_SUBSEARCH);
341       foreach($ogroups as $ogroup){
342         for($i = 0 ; $i < $ogroup['member']['count'] ; $i++){
343           if(preg_match("/:/",$ogroup['FAIclass'][0])) {
344             if(!isset($og_list[$ogroup['member'][$i]])){
345               $ogs_release[$ogroup['member'][$i]]['STR'] = ""; 
346               $ogs_release[$ogroup['member'][$i]]['CN'] = ""; 
347             }
348             $ogs_release[$ogroup['member'][$i]]['STR'] .= preg_replace("/^.*:/","",$ogroup['FAIclass'][0]).", ";
349             $ogs_release[$ogroup['member'][$i]]['CN']  .= $ogroup['cn'][0].", ";
350           }
351         }
352       }
353     }
355     // Test Every Entry and generate divlist Array
356     foreach($terminals as $key => $val){
358       /* Get system type, it is used to fetch the acls for the current object.
359           "winstation" acls are stored as 2winworkstation", so we have to map this here */
360       $type     = $this->parent->get_system_type($val);
361       if($type == "winstation") {
362         $acl_type = "winworkstation";
363       }else{
364         $acl_type = $type;
365       }
367       /* Map NewDevice acls to workstation acls */
368       if($type == "NewDevice" || $type == "ArpNewDevice"){
369         $type     = "incoming";
370         $acl_type = "incoming";
371       }
373       $s_acl    = $tabs[$type]['ACL'];
374       $category = preg_replace("/\/.*$/","",$s_acl);
375       $class    = preg_replace("/^.*\//","",$s_acl);
377       /* Get complete category acls */
378       $acl_all  = $ui->has_complete_category_acls($val['dn'],$acl_type) ;
379   
380       /* Get specific generic acls */
381       $acl      = $ui->get_permissions($val['dn'],$tabs[$type]['ACL']);
383       $action ="";
384       if($ui->is_cutable($val['dn'],$category,$class) && $this->parent->CopyPasteHandler){
385         $action .= "<input class='center' type='image'
386           src='images/lists/cut.png' alt='"._("cut")."' name='cut_%KEY%' title='"._("Cut this entry")."'>&nbsp;";
387       }else{
388         $action.="<img src='images/empty.png' alt=' ' class='center'>&nbsp;";
389       }
391       if($ui->is_copyable($val['dn'],$category,$class) && $this->parent->CopyPasteHandler){
392         $action.= "<input class='center' type='image'
393           src='images/lists/copy.png' alt='"._("copy")."' name='copy_%KEY%' title='"._("Copy this entry")."'>&nbsp;";
394       }else{
395         $action.="<img src='images/empty.png' alt=' ' class='center'>&nbsp;";
396       }
399       $action.= "<input class='center' type='image' src='images/lists/edit.png' 
400                     alt='"._("edit")."'     name='system_edit_%KEY%' title='"._("Edit system")."'>";
402       $action.= $this->parent->get_snapshot_action($val['dn'],$acl_type);
404       /* Generate picture list, which is currently disabled */
405       if(in_array("goCupsServer"    ,$val['objectClass'])) $cups    = $img1;   else $cups  =$empty;
406       if(in_array("goLogDBServer"   ,$val['objectClass'])) $logdb   = $img2;   else $logdb =$empty;
407       if(in_array("goSyslogServer"  ,$val['objectClass'])) $syslog  = $img3;   else $syslog=$empty;
408       if(in_array("goImapServer"    ,$val['objectClass'])) $imap    = $img4;   else $imap  =$empty;
409       if(in_array("sambaSamAccount" ,$val['objectClass'])) $samba   = $img5;   else $samba =$empty;
410       if(in_array("goShareServer"   ,$val['objectClass'])) $nfs     = $img6;   else $nfs   =$empty;
411       if(in_array("goKrbServer"     ,$val['objectClass'])) $krb     = $img7;   else $krb   =$empty;
412       if(in_array("goFonServer"     ,$val['objectClass'])) $fon     = $img8;   else $fon   =$empty;
413       if(in_array("goFaxServer"     ,$val['objectClass'])) $fax     = $img9;   else $fax   =$empty;
414       if(in_array("goLdapServer"    ,$val['objectClass'])) $ldap     = $img10;   else $ldap   =$empty;
416       $pics = $cups.$logdb.$syslog.$imap.$samba.$nfs.$krb.$fon.$fax.$ldap;
417       $pics = ""; // Pictures currently hidden
419       $val['cn'][0]= preg_replace('/\$$/', '', $val['cn'][0]);
421       // Generate Array to Add
422       $dsc= "";
423       if (isset($val['description'][0])){
424         $dsc= " [".$val['description'][0]."]";
425       }
426       if((isset($val['is_new']))&&(!empty($val['is_new']))){
427         $display= $val["cn"][0]." ".$val['is_new'].$dsc;
428       }else{
429         $display= $val["cn"][0].$dsc;
430       }
432       /* Check if this is a terminal/workstation && if we are allowed to change the gotoRootPasswd */
433       $display_key_for = array("terminal","workstation","server","component");
434       $pwd_acl = $ui->get_permissions($val['dn'],$tabs[$type]['ACL'],"userPassword");
435       if(preg_match("/w/",$pwd_acl) && in_array($type,$display_key_for)){
436         $action2 = "<input class='center' type='image' src='images/lists/key.png' alt='"._("Password")."'   name='system_setpwd_%KEY%' title='"._("Set password")."'>";
437       }else{
438         $action2 = $empty;
439       }
441       if(in_array("gotoWorkstation",$val['objectClass'])){
442         $action2= "<input class='center' type='image' src='images/cdrom.png' alt='"._("Create CD")."'   
443                       name='gen_cd_%KEY%' title='"._("Create FAI CD")."'>&nbsp;".$action2;
444       }else{
445         $action2= $empty.$action2;
446       }
448       if(isset($val['message'])){
449         $display.= "  (".$val['message'].")";
450       }
452       $img    = $this->parent->convert_list($val);
454       /* Cutted objects should be displayed in light grey */
455       if($this->parent->CopyPasteHandler){
456         foreach($this->parent->CopyPasteHandler->queue as $queue_key => $queue_data){
457           if($queue_data['dn'] == $val['dn']) {
458             $display = "<font color='#999999'>".$display."</font>";
459             break;
460           }
461         }
462       }
464       $type = $this->parent->get_system_type($val);
465       if($type == "ArpNewDevice"){
466         $type = "NewDevice";
467       }
468       $cnts[$type] ++;
470       /* Create each field */
471       $field0 = array("string" => "<input type='checkbox' id='item_selected_".$key."' name='item_selected_".$key."'>" ,
472           "attach" => "style='width:20px;'");
473       $field1 = array("string" => sprintf($img['img'],$val['dn']),
474           "attach" => "style='text-align:center;width:20px;'");
475       $field2 = array("string" => sprintf($editlink,$key,$display),
476           "attach" => "style='' title='".preg_replace('/ /', '&nbsp;', @LDAP::fix($val['dn']))."'");
477       $field3 = array("string" => preg_replace("/%KEY%/", "$key", $action2.$action),
478           "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'");
480       if($this->parent->fai_activated){
482         $release ="&nbsp;";
483         $release_attach = ""; 
484         if(isset($val['FAIclass'][0]) && preg_match("/:/",$val['FAIclass'][0])){
485           $release        = preg_replace("/^.*:/","",$val['FAIclass'][0]);
486           $release_attach = ""; 
487         }elseif(isset($ogs_release[$val['dn']])){
488           $release = trim($ogs_release[$val['dn']]['STR'],", ").
489             "&nbsp;<img src='images/select_ogroup.png' class='center' alt='' 
490             title='".sprintf(_("Inherited from %s"),trim($ogs_release[$val['dn']]['CN'],", "))."'>";
491           $release_attach = "title='".sprintf(_("Inherited from %s"),trim($ogs_release[$val['dn']]['CN'],", "))."'"; 
492         }
493         $field2a = array("string" => $release,"attach"=>$release_attach." style='width:100px;'");
494         $this->AddElement( array($field0,$field1,$field2,$field2a,$field3));
495       }else{
496         $this->AddElement( array($field0,$field1,$field2,$field3));
497       }
498     }
500     /* Create summary string for list footer */
501     $num_deps=0;
502     if(!$this->SubSearch){
503       $num_deps = count($this->Added_Departments);
504     }
506     $num_ser_str = sprintf(_("Number of listed '%s'"),_("servers"));
507     $num_ws_str  = sprintf(_("Number of listed '%s'"),_("workstations"));
508     $num_ter_str = sprintf(_("Number of listed '%s'"),_("terminals"));
509     $num_pho_str = sprintf(_("Number of listed '%s'"),_("phones"));
510     $num_prt_str = sprintf(_("Number of listed '%s'"),_("printers"));
511     $num_com_str = sprintf(_("Number of listed '%s'"),_("network components"));
512     $num_new_str = sprintf(_("Number of listed '%s'"),_("new devices"));
513     $num_wws_str = sprintf(_("Number of listed '%s'"),_("windows workstations"));
514     $num_dep_str = sprintf(_("Number of listed '%s'"),_("departments"));
516     $str = "<img class='center' src='images/select_server.png'
517       title='".$num_ser_str."' alt='".$num_ser_str."'>&nbsp;".$cnts['server']."&nbsp;&nbsp;&nbsp;&nbsp;";
518     $str.= "<img class='center' src='images/select_workstation.png'
519       title='".$num_ws_str."' alt='".$num_ws_str."'>&nbsp;".$cnts['workstation']."&nbsp;&nbsp;&nbsp;&nbsp;";
520     $str.= "<img class='center' src='images/select_terminal.png'
521       title='".$num_ter_str."' alt='".$num_ter_str."'>&nbsp;".$cnts['terminal']."&nbsp;&nbsp;&nbsp;&nbsp;";
522     $str.= "<img class='center' src='images/select_phone.png'
523       title='".$num_pho_str."' alt='".$num_pho_str."'>&nbsp;".$cnts['phone']."&nbsp;&nbsp;&nbsp;&nbsp;";
524     $str.= "<img class='center' src='images/select_printer.png'
525       title='".$num_prt_str."' alt='".$num_prt_str."'>&nbsp;".$cnts['printer']."&nbsp;&nbsp;&nbsp;&nbsp;";
526     $str.= "<img class='center' src='images/select_component.png'
527       title='".$num_com_str."' alt='".$num_com_str."'>&nbsp;".$cnts['component']."&nbsp;&nbsp;&nbsp;&nbsp;";
528     $str.= "<img class='center' src='images/select_newsystem.png'
529       title='".$num_new_str."' alt='".$num_new_str."'>&nbsp;".$cnts['NewDevice']."&nbsp;&nbsp;&nbsp;&nbsp;";
530     $str.= "<img class='center' src='images/select_winstation.png'
531       title='".$num_wws_str."' alt='".$num_wws_str."'>&nbsp;".$cnts['winstation']."&nbsp;&nbsp;&nbsp;&nbsp;";
532     $str.= "<img class='center' src='images/lists/folder.png'
533       title='".$num_dep_str."' alt='".$num_dep_str."'>&nbsp;".$num_deps."&nbsp;&nbsp;&nbsp;&nbsp;";
535     $this->set_List_Bottom_Info($str);
536   }
539   function Save()
540   {
541     MultiSelectWindow :: Save();  
542   }
545   function save_object()
546   {
547     /* Save automatic created POSTs like regex, checkboxes */
548     MultiSelectWindow :: save_object();  
551   }
553 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
554 ?>