Lines Matching +full:name -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang)

13  *     gid   name
62 * %{user} user name
64 * %{dgroup} default group name
71 AND name='%{dgroup}'";
76 * 'name' the user's full name
83 * %{user} user name
85 $conf['plugin']['authmysql']['getUserInfo'] = "SELECT pass, CONCAT(firstname,' ',lastname) AS name, email AS mail
91 * member of. The plugin accesses the group name as 'group' so an alias
95 * %{user} user name
97 $conf['plugin']['authmysql']['getGroups'] = "SELECT name as `group`
111 * user name is only allowed once in the table.
113 * The login name will be accessed as 'user' to an alias might be necessary.
116 * %{user} in FilterLogin user's login name
117 * %{name} in FilterName user's full name
119 * %{group} in FilterGroup group name
126 $conf['plugin']['authmysql']['FilterName'] = "CONCAT(firstname,' ',lastname) LIKE '%{name}'";
128 $conf['plugin']['authmysql']['FilterGroup'] = "name LIKE '%{group}'";
136 * to store are: login name, password, email address and full name.
139 * %{user} user's login name
142 * %{name} user's full name
147 SUBSTRING_INDEX('%{name}',' ', 1),
148 SUBSTRING_INDEX('%{name}',' ', -1))";
152 * %{group} group name
154 $conf['plugin']['authmysql']['addGroup'] = "INSERT INTO groups (name)
160 * %{user} user's login name
162 * %{group} group name
170 * %{group} group name
176 /* This statement should return the database index of a given user name.
177 * The plugin will access the index with the name 'id' so an alias might be
180 * %{user} user name
192 * %{user} user's login name
215 * %{user} user's login name
218 * %{name} user's full name
225 $conf['plugin']['authmysql']['UpdateName'] = "firstname=SUBSTRING_INDEX('%{name}',' ', 1),
226 lastname=SUBSTRING_INDEX('%{name}',' ', -1)";
233 * %{user} user's login name
235 * %{group} group name
242 /* This statement should return the database index of a given group name.
243 * The plugin will access the index with the name 'id' so an alias might
247 * %{group} group name
251 WHERE name='%{group}'";