/** * 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]; } } }
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; }
public function __construct($url = '') { $this->url = $url; $this->filters = array(); $this->simple = false; parent::__construct($this, ''); }
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()); }
function __construct($host, $path) { parent::__construct($host, $path); }