"Eins ist toll", "zwei" => "Zwei ist noch besser"); /* attribute list for save action */ var $ignore_account = TRUE; var $attributes = array(); var $objectclasses = array("whatever"); var $regex = "*"; var $depselect = "/"; var $deplist = "/"; var $searchObjects = ""; var $searchAttrs = ""; var $searchAppend = ""; var $baseAddition = ""; var $type = ""; function selectUserToPrinterDialog ($config, $dn= NULL,$type=false ) { plugin::plugin ($config, $dn); $this->depselect = $this->config->current['BASE']; switch($type){ case "AddUser" : $this->searchObjects = "(objectClass=gosaAccount)(!(uid=*$))"; $this->searchAttrs = array("cn","uid"); $this->searchAppend = "uid"; $this->baseAddition = get_people_ou(); ;break; case "AddGroup" : $this->searchObjects = "(objectClass=posixGroup)"; $this->searchAttrs = array("cn","description"); $this->searchAppend = "cn"; $this->baseAddition = get_groups_ou(); ;break; case "AddAdminUser" : $this->searchObjects = "(objectClass=gosaAccount)(!(uid=*$))"; $this->searchAttrs = array("cn","uid"); $this->searchAppend = "uid"; $this->baseAddition = get_people_ou(); ;break; case "AddAdminGroup" : $this->searchObjects = "(objectClass=posixGroup)"; $this->searchAttrs = array("cn","description"); $this->searchAppend = "cn"; $this->baseAddition = get_groups_ou(); ;break; } $this->type = $type; } function execute() { /* Call parent execute */ plugin::execute(); /* Fill templating stuff */ $smarty= get_smarty(); $display= ""; if(isset($_POST['dialogissubmitted'])){ $this->regex=$_POST['regexPrinter']; $this->depselect = $_POST['depselectPrinter']; } if((isset($_GET['search']))&&(!empty($_GET['search']))){ $this->regex=$_GET['search']."*"; $this->regex=preg_replace("/\*\*/","*",$this->regex); } $tmp_printers= $this->getPrinter(); $smarty->assign("regexPrinter" , $this->regex); $smarty->assign("deplistPrinter" , $this->config->idepartments);//deplist); $smarty->assign("depselectPrinter" , $this->depselect); $smarty->assign("gotoPrinters" , $tmp_printers); $smarty->assign("gotoPrinterKeys" , array_flip($tmp_printers)); $smarty->assign("apply" , apply_filter()); $smarty->assign("alphabet" , generate_alphabet()); $smarty->assign("search_image" , get_template_path('images/search.png')); $smarty->assign("tree_image" , get_template_path('images/tree.png')); $smarty->assign("infoimage" , get_template_path('images/info.png')); $smarty->assign("launchimage" , get_template_path('images/small_filter.png')); $smarty->assign("deplist" , $this->config->idepartments); $display.= $smarty->fetch(get_template_path('selectUserToPrinterDialog.tpl', TRUE,dirname(__FILE__))); return($display); } function check(){ /* Call common method to give check the hook */ $message= plugin::check(); if(empty($_POST['gotoPrinter'])){ $message[] = _("Please select a printer or press cancel."); } return $message; } /* Save to LDAP */ function save() { $a_return['type']=$this->type; foreach($_POST['gotoPrinter'] as $name){ $data = $this->getPrinter(true); $a_return[$name]= $data[$name]; } return($a_return); } /* This function generates the Printerlist * All printers are returned that match regex and and depselect */ function getPrinter($detailed = false) { $a_return=array(); $ldap = $this->config->get_ldap_link(); $ldap->cd($this->depselect); #$ldap->search("(&".$this->searchObjects."(cn=".$this->regex."))", $this->depselect, $this->searchAttrs); $ldap->ls("(&".$this->searchObjects."(cn=".$this->regex."))", $this->baseAddition.$this->depselect, $this->searchAttrs); while($printer = $ldap->fetch()){ if(($detailed ==true)){ if(isset($printer[$this->searchAppend])){ $a_return[$printer[$this->searchAppend][0]] = $printer; } }else{ if(isset($printer[$this->searchAppend])){ if(isset($printer['description'][0])){ $a_return[$printer[$this->searchAppend][0]] = $printer['cn'][0]." - ".$printer['description'][0]; }else{ $a_return[$printer[$this->searchAppend][0]] = $printer['cn'][0]; } } } } return($a_return); } } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?>