Ejemplo n.º 1
0
Archivo: Ldap.php Proyecto: visapi/amun
 public function __construct($container)
 {
     parent::__construct($container);
     $this->res = ldap_connect(self::LDAP_HOST);
     if (!$this->res) {
         throw new Exception('Ldap connection failed');
     }
     if (!ldap_bind($this->res, self::USER_DN, self::USER_PW)) {
         throw new Exception('Could not bind Ldap');
     }
 }
Ejemplo n.º 2
0
 public function __construct($container)
 {
     parent::__construct($container);
     $this->http = $container->get('http');
     $this->store = new Store\Sql($this->sql, $this->registry['table.core_assoc']);
 }
Ejemplo n.º 3
0
 public function __construct($container)
 {
     parent::__construct($container);
     $this->http = $container->get('http');
     $this->oauth = new Oauth($this->http);
 }