Lines Matching defs:info
77 * Return user info
79 * Returns info about the given user needs to contain
88 * @param bool $requireGroups (optional) ignored by this plugin, grps info always supplied
288 foreach ($this->users as $user => $info) {
289 $count += $this->filter($user, $info);
317 foreach ($this->users as $user => $info) {
318 if ($this->filter($user, $info)) {
320 $out[$user] = $info;
344 foreach ($this->users as $info) {
345 $groups = array_merge($groups, array_diff($info['grps'], $groups));
455 * return true if $user + $info match $filter criteria, false otherwise
460 * @param array $info User's userinfo array
463 protected function filter($user, $info)
469 if (!count(preg_grep($pattern, $info['grps']))) return false;
470 } elseif (!preg_match($pattern, $info[$item])) {