Ejemplo n.º 1
0
 /**
  * Constructor
  * @param string[] $serverConfigPrefixes array containing the config Prefixes
  */
 public function __construct($serverConfigPrefixes, ILDAPWrapper $ldap)
 {
     parent::__construct($ldap);
     foreach ($serverConfigPrefixes as $configPrefix) {
         $this->backends[$configPrefix] = new \OCA\User_LDAP\Group_LDAP($this->getAccess($configPrefix));
         if (is_null($this->refBackend)) {
             $this->refBackend =& $this->backends[$configPrefix];
         }
     }
 }
Ejemplo n.º 2
0
 function __construct($storage, $cacheFile)
 {
     parent::__construct($storage);
     $this->cache = $this->readCache($cacheFile);
     $this->ends = str_repeat("", $this->getCharSize() + 1);
 }
 public function __construct()
 {
     parent::__construct(self::NAME, new ArrayObject());
     $this->users =& $this->data;
 }
Ejemplo n.º 4
0
 public function __construct($url = '')
 {
     $this->url = $url;
     $this->filters = array();
     $this->simple = false;
     parent::__construct($this, '');
 }
Ejemplo n.º 5
0
 public function __construct($proxy, $type = self::HTTP)
 {
     parent::__construct($proxy, $type);
     $this->initCookiePath();
 }
 public function __construct()
 {
     parent::__construct();
 }
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct(ModelTestProxy::NAME, '');
 }
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct(ApplicationDataProxy::NAME, new ApplicationDataVO());
 }
Ejemplo n.º 9
0
 function __construct($host, $path)
 {
     parent::__construct($host, $path);
 }