config= $config; /* set permissions */ $ui= get_userinfo(); $acl= get_permissions ($ui->dn, $ui->subtreeACL); $this->acl= get_module_permission($acl, "ldapmanager", $ui->dn); } function execute() { /* Call parent execute */ plugin::execute(); /* Set government mode */ $smarty= get_smarty(); $smarty->assign("type",FALSE); $smarty->assign("depselectivbb",""); /* Check permissions for export */ if (chkacl($this->acl,"xlsexport")!=""){ print_red(_("You've no permission to do LDAP exports.")); } else { // fill in old vars in the Export form if((isset($_POST['single']))&&(isset($_POST['sfrmgetsingle']))){ $smarty->assign("single",$_POST['single']); $smarty->assign("type","single"); $a=$_POST['single']; $b=$_POST['selfull']; // $dn=$a.$b; } if((isset($_POST['selfull']))&&(isset($_POST['sfrmgetfull']))){ $smarty->assign("depselectfull",$_POST['selfull']); $smarty->assign("type","full"); $dn = $_POST['selfull']; } else { $smarty->assign("depselectfull", ""); } if((isset($_POST['selivbb']))&&(isset($_POST['sfrmgetivbb']))){ $smarty->assign("depselectivbb",$_POST['selivbb']); $smarty->assign("type","ivbb"); $dn = $_POST['selivbb']; } else { $smarty->assign("depselectivbb", ""); } } // Set values for optionlist in form $smarty->assign("deplist", $this->config->idepartments); $smarty->assign("choicelist",array(get_people_ou()=>"users" ,"ou=groups,"=>"groups" ,"ou=computers,ou=systems,"=>"computers","ou=servers,ou=systems,"=>"servers","dc=addressbook,"=>"addressbook")); // Get the LDAP link, to generate the Export $ldap = $this->config->get_ldap_link(); if ($this->config->current['GOVERNMENTMODE'] == 'true'){ $smarty->assign ("govmode", "true"); } else { $smarty->assign ("govmode", "false"); } $smarty->assign("LDIFError",FALSE); if(isset($dn)) { if($ldap->dn_exists($dn) && $dn != ""){ ; } else { $smarty->assign("LDIFError",TRUE); print_red (_("Error while exporting the requested entries!")); } } // print_r($_POST); // Export a single LDAP entry if(isset($_POST['sfrmgetsingle'])) { $smarty->assign("para","?ivbb=2&d=".base64_encode($_POST['single'])."&n=".base64_encode($_POST['selfull'])); } elseif(isset($_POST['sfrmgetfull'])) { $smarty->assign("para","?ivbb=3&dn=".base64_encode($_POST['selfull'])); } elseif(isset($_POST['sfrmgetivbb'])) { $smarty->assign("para","?ivbb=4&dn=".base64_encode($_POST['selivbb'])); } /* Show main page */ return ($smarty->fetch (get_template_path('contentexportxls.tpl', TRUE))); } } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?>