Lines Matching refs:_userInfo
38 var $_userInfo = array(); variable in auth_plugin_authplaincas
277 $this->_userInfo = $this->getUserData($remoteUser);
281 if ($this->_userInfo === false) {
283 $this->_userInfo = array(
295 $USERINFO = $this->_userInfo;
303 $this->_userInfo['uid'] = $remoteUser;
308 if ($this->_userInfo['grps'] != $this->_userInfo['tmp_grps'] ||
309 $attributes['name'] !== $this->_userInfo['name'] ||
310 $attributes['mail'] !== $this->_userInfo['mail']
314 $this->_userInfo = array(
324 $USERINFO = $this->_userInfo;
342 $this->_userInfo['tmp_grps'] = array();
414 if (! isset($this->_userInfo['tmp_grps'])) {
415 $this->_userInfo['tmp_grps'] = array();
417 if( !in_array(trim($groupName), $this->_userInfo['tmp_grps'])) {
418 $this->_userInfo['tmp_grps'][] = trim($groupName);
425 $this->_userInfo['grps'] = $this->_userInfo['tmp_grps'];
433 elseif (count( array_intersect( $this->_userInfo['grps'], $groups ) )) {
447 $this->_userInfo['grps'] = array();
448 $this->_userInfo['tmp_grps'] = array();
452 $USERINFO = $this->_userInfo;
471 $this->_log($this->_userInfo);