Lines Matching defs:adminUsername
120 protected $adminUsername = NULL;
410 * @param string $adminUsername
413 public function setAdminUsername($adminUsername)
415 $this->adminUsername = $adminUsername;
585 if (array_key_exists("admin_username",$options)){ $this->adminUsername = $options["admin_username"]; }
642 if ($this->adminUsername !== NULL && $this->adminPassword !== NULL) {
643 $this->ldapBind = @ldap_bind($this->ldapConnection, $this->adminUsername . $this->accountSuffix, $this->adminPassword);
654 if ($this->useSSO && $_SERVER['REMOTE_USER'] && $this->adminUsername === null && $_SERVER['KRB5CCNAME']) {
698 if ($this->useSSO && $_SERVER['REMOTE_USER'] && $_SERVER['REMOTE_USER'] == $username && $this->adminUsername === NULL && $_SERVER['KRB5CCNAME']) {
717 if ($this->adminUsername !== NULL && !$preventRebind) {
718 $this->ldapBind = @ldap_bind($this->ldapConnection, $this->adminUsername . $this->accountSuffix , $this->adminPassword);