ldapmgr.php 368 B

12345678910111213141516
  1. <?php
  2. //LDAP Mgr users export
  3. if (ubRouting::get('action') == 'ldapmgr') {
  4. if ($alterconf['LDAPMGR_ENABLED']) {
  5. $ldapMgr = new UbillingLDAPManager();
  6. if (isset($_GET['param'])) {
  7. if ($_GET['param'] == 'queue') {
  8. $ldapMgr->getQueue();
  9. }
  10. }
  11. } else {
  12. die('ERROR: LDAPMGR DISABLED');
  13. }
  14. }