Lines Matching +full:update +full:- +full:user +full:- +full:login -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang)

11 $conf['user'] = '';
15 * statement to select a single user identified by its login name
17 * input: :user
18 * return: user, name, mail, (clear|hash), [uid], [*]
20 $conf['select-user'] = '';
25 * input: :user, :clear, :hash, [uid], [*]
28 $conf['check-pass'] = '';
31 * statement to select a single user identified by its login name
33 * input: :user, [uid]
36 $conf['select-user-groups'] = '';
43 $conf['select-groups'] = '';
46 * Create a new user
48 * input: :user, :name, :mail, (:clear|:hash)
50 $conf['insert-user'] = '';
53 * Remove a user
55 * input: :user, [:uid], [*]
57 $conf['delete-user'] = '';
60 * list user names matching the given criteria
62 * Make sure the list is distinct and sorted by user name. Apply the given limit and offset
64 * input: :user, :name, :mail, :group, :start, :end, :limit
65 * out: user
67 $conf['list-users'] = '';
70 * count user names matching the given criteria
74 * input: :user, :name, :mail, :group
77 $conf['count-users'] = '';
80 * Update user data (except password and user name)
82 * input: :user, :name, :mail, [:uid], [*]
84 $conf['update-user-info'] = '';
87 * Update user name aka login
89 * input: :user, :newlogin, [:uid], [*]
91 $conf['update-user-login'] = '';
94 * Update user password
96 * input: :user, :clear, :hash, [:uid], [*]
98 $conf['update-user-pass'] = '';
105 $conf['insert-group'] = '';
108 * Make user join group
110 * input: :user, [:uid], group, [:gid], [*]
112 $conf['join-group'] = '';
115 * Make user leave group
117 * input: :user, [:uid], group, [:gid], [*]
119 $conf['leave-group'] = '';