AddCheckBox */ var $ShowServers; var $ShowTerminals; var $ShowWorkstations; var $ShowWinWorkstations; var $ShowPrinters; var $ShowDevices; var $ShowPhones; /* Subsearch checkbox */ var $SubSearch; var $parent ; var $ui ; function divListSystem ($config,$parent) { MultiSelectWindow::MultiSelectWindow($config,"System"); $this->parent = $parent; $this->ui = get_userinfo(); /* Set list strings */ $this->SetTitle(_("List of systems")); $this->SetSummary(_("List of systems")); /* Result page will look like a headpage */ $this->SetHeadpageMode(); $this->SetInformation(_("This menu allows you to add, remove and change the properties of specific systems. You can only add systems which have already been started once.")); $this->EnableAplhabet (true); /* Disable buttonsm */ $this->EnableCloseButton(false); $this->EnableSaveButton (false); /* set Page header */ $this->AddHeader(array("string"=>" ","attach"=>"style='width:20px;'")); $this->AddHeader(array("string"=>_("System / Department"))); $this->AddHeader(array("string"=>_("Actions"),"attach"=>"style='width:90px;border-right:0px;'")); /* Text ,Value ,Name ,Is selected */ $this->AddCheckBox("ShowServers", _("Select to see servers"), _("Show servers"), true); $this->AddCheckBox("ShowTerminals", _("Select to see Linux terminals"), _("Show terminals") , true); $this->AddCheckBox("ShowWorkstations", _("Select to see Linux workstations"), _("Show workstations"), true); $this->AddCheckBox("ShowWinWorkstations", _("Select to see MicroSoft Windows based workstations"), _("Show windows based workstations"),true); $this->AddCheckBox("ShowPrinters", _("Select to see network printers"), _("Show network printers") ,true); $this->AddCheckBox("ShowPhones", _("Select to see VOIP phones"), _("Show phones") , true); $this->AddCheckBox("ShowDevices", _("Select to see network devices"), _("Show network devices"), true); /* Add SubSearch checkbox */ $this->AddCheckBox(SEPERATOR); $this->AddCheckBox("SubSearch", _("Select to search within subtrees"), _("Ignore subtrees"), false); /* Name ,Text ,Default , Connect with alphabet */ $this->AddRegex ("Regex", _("Display systems matching"),"*" , true); $this->AddRegex ("UserRegex", _("Display systems of user"), "*" , false, "images/search_user.png"); } function GenHeader() { /* Prepare departments, which are shown in the listbox on top of the listbox */ $options= ""; foreach ($this->config->idepartments as $key => $value){ if ($this->selectedBase == $key){ $options.= ""; } else { $options.= ""; } } $listhead = "
". "  ". "  ". "  ". "  ". "  "; if($this->parent->snapshotEnabled()){ $listhead .= " ". "  "; } $listhead .= " ". " ". " ". " ". " ". " ". "  "._("Base")." ". " ". "  ". "
"; $this->SetListHeader($listhead); } function execute() { $this->ClearElementsList(); $this->GenHeader(); } function GetSnapShotActions($dn) { $str = ""; if($this->parent->snapshotEnabled()){ $str .=" "; if(count($this->parent->Available_SnapsShots($dn))){ $str .=" "; }else{ $str.= " "; } } return($str); } function setEntries($terminals) { $img1 = "C"; $img2 = "L"; $img3 = "L"; $img4 = "M"; $img5 = "I"; $img6 = "F"; $img7 = "K"; $img8 = "A"; $img9 = "F"; $img10 = "L"; $empty =" "; // User and Template Images $editlink = "%s"; // Test Every Entry and generate divlist Array foreach($terminals as $key => $val){ $action = $this->GetSnapShotActions($val['dn']); $action.= ""; $action.= ""; /* Generate picture list, which is currently disabled */ if(in_array("goCupsServer" ,$val['objectClass'])) $cups = $img1; else $cups =$empty; if(in_array("goLogDBServer" ,$val['objectClass'])) $logdb = $img2; else $logdb =$empty; if(in_array("goSyslogServer" ,$val['objectClass'])) $syslog = $img3; else $syslog=$empty; if(in_array("goImapServer" ,$val['objectClass'])) $imap = $img4; else $imap =$empty; if(in_array("sambaSamAccount" ,$val['objectClass'])) $samba = $img5; else $samba =$empty; if(in_array("goShareServer" ,$val['objectClass'])) $nfs = $img6; else $nfs =$empty; if(in_array("goKrbServer" ,$val['objectClass'])) $krb = $img7; else $krb =$empty; if(in_array("goFonServer" ,$val['objectClass'])) $fon = $img8; else $fon =$empty; if(in_array("goFaxServer" ,$val['objectClass'])) $fax = $img9; else $fax =$empty; if(in_array("goLdapServer" ,$val['objectClass'])) $ldap = $img10; else $ldap =$empty; $pics = $cups.$logdb.$syslog.$imap.$samba.$nfs.$krb.$fon.$fax.$ldap; $pics = ""; // Pictures currently hidden $val['cn'][0]= preg_replace('/\$$/', '', $val['cn'][0]); // Generate Array to Add $dsc= ""; if (isset($val['description'][0])){ $dsc= " [".$val['description'][0]."]"; } if((isset($val['is_new']))&&(!empty($val['is_new']))){ $display= $val["cn"][0]." ".$val['is_new'].$dsc; }else{ $display= $val["cn"][0].$dsc; } if((in_array("gotoTerminal",$val['objectClass']))||(in_array("gotoWorkstation",$val['objectClass']))){ $action2 = ""; }else{ $action2 = ""; } if(isset($val['message'])){ $display.= " (".$val['message']." '".$this->config->idepartments[$_SESSION['CurrentMainBase']]."' )"; } $img = $this->parent->convert_list($val); $field1 = array("string" => sprintf($img['img'],$val['dn']), "attach" => "style='text-align:center;width:20px;'"); $field2 = array("string" => sprintf($editlink,$key,$display), "attach" => "style='' title='".preg_replace('/ /', ' ', @LDAP::fix($val['dn']))."'"); $field3 = array("string" => preg_replace("/%KEY%/", "$key", $action2.$action), "attach" => "style='width:90px;border-right:0px;text-align:right;'"); $this->AddElement( array($field1,$field2,$field3)); } } function Save() { MultiSelectWindow :: Save(); } function save_object() { /* Save automatic created POSTs like regex, checkboxes */ MultiSelectWindow :: save_object(); /* check for posts */ $once = true; foreach($_POST as $name => $value){ /* Create a new snapshot, display a dialog */ if(preg_match("/^CreateSnapShot_/",$name) && $once){ $once = false; $entry = preg_replace("/^CreateSnapShot_/","",$name); $entry = base64_decode(preg_replace("/_[xy]$/","",$entry)); $this->parent->systab = new SnapShotDialog($this->config,$entry,$this->parent); } /* Restore a snapshot, display a dialog with all snapshots of the current object */ if(preg_match("/^RestoreSnapShot_/",$name) && $once){ $once = false; $entry = preg_replace("/^RestoreSnapShot_/","",$name); $entry = base64_decode(preg_replace("/_[xy]$/","",$entry)); $this->parent->systab = new SnapShotDialog($this->config,$entry,$this->parent); $this->parent->systab->Restore = true; } /* Restore one of the already deleted objects */ if(preg_match("/^RestoreDeletedSnapShot_/",$name) && $once){ $once = false; $entry = "ou=systems,".$this->selectedBase; $this->parent->systab = new SnapShotDialog($this->config,$entry,$this->parent); $this->parent->systab->Restore = true; $this->parent->systab->DeletedOnes = true; } } /* Create a new snapshot requested, check the given attributes and create the snapshot*/ if(isset($_POST['CreateSnapshot'])){ $this->parent->systab->save_object(); $msgs = $this->parent->systab->check(); if(count($msgs)){ foreach($msgs as $msg){ print_red($msg); } }else{ $this->parent->dn = $this->parent->systab->dn; $this->parent->create_snapshot("snapshot",$this->parent->systab->CurrentDescription); $this->parent->systab = NULL; } } /* Restore is requested, restore the object with the posted dn .*/ if((isset($_POST['RestoreSnapshot'])) && (isset($_POST['SnapShot']))){ $entry = base64_decode($_POST['SnapShot']); $this->parent->restore_snapshot($entry); $this->parent->systab = NULL; } } } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?>