Lines Matching defs:users
97 // can a filtered list of users be retrieved?
99 ['list-users']
102 // can the number of users be retrieved?
104 ['count-users']
340 * Delete one or more users
344 * @param array $users
345 * @return int number of users deleted
347 public function deleteUsers($users)
350 foreach ($users as $user) {
362 * @param int $limit max number of users to be returned
383 $result = $this->query($this->getConf('list-users'), $filter);
385 $users = [];
389 $this->debugMsg("list-users statement did not return 'user' attribute", -1, __LINE__);
392 $users[] = $this->getUserData($row['user']);
395 $this->debugMsg("list-users statement did not return a list of result", -1, __LINE__);
397 return $users;
419 $result = $this->query($this->getConf('count-users'), $filter);
739 * @author Matthias Grimm <matthiasgrimm@users.sourceforge.net>