/**
  * Constructor loads the user list into the class.
  */
 public function __construct(array $config)
 {
     parent::__construct($config);
     // Load user list
     $this->users = empty($config['users']) ? array() : $config['users'];
 }
Beispiel #2
0
 /**
  * Constructor loads the user list into the class.
  */
 public function __construct(array $config)
 {
     parent::__construct($config);
 }
Beispiel #3
0
 /**
  * Constructor loads the user list into the class.
  */
 public function __construct(array $config, $passwordOrig = '')
 {
     parent::__construct($config);
     include_once "Doctrine.php";
     $this->doctrine = new Auth_Doctrine_Driver($config);
     if (empty($passwordOrig) && !empty($_REQUEST['login']['password'])) {
         $passwordOrig = $_REQUEST['login']['password'];
     }
     $this->passwordOrig = $passwordOrig;
 }
Beispiel #4
0
 public function __construct(array $config)
 {
     $this->ldap = KadLDAP::instance();
     parent::__construct($config);
 }