Lines Matching refs:plugin

3  * This is an example configuration for the mysql auth plugin.
26 $conf['plugin']['authmysql']['server'] = '';
27 $conf['plugin']['authmysql']['user'] = '';
28 $conf['plugin']['authmysql']['password'] = '';
29 $conf['plugin']['authmysql']['database'] = '';
31 /* This option enables debug messages in the mysql plugin. It is
34 $conf['plugin']['authmysql']['debug'] = 0;
41 $conf['plugin']['authmysql']['forwardClearPass'] = 0;
44 * the plugin which tables to lock. If you use any aliases for table names
48 $conf['plugin']['authmysql']['TablesToLock']= array("users", "users AS u","groups", "groups AS g", "usergroup", "usergroup AS ug");
59 * The plugin accesses the password as 'pass' so an alias might be necessary.
66 $conf['plugin']['authmysql']['checkPass'] = "SELECT pass
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
97 $conf['plugin']['authmysql']['getGroups'] = "SELECT name as `group`
109 * case dependent by the plugin. At the end a sort expression will be added.
121 $conf['plugin']['authmysql']['getUsers'] = "SELECT DISTINCT login AS user
125 $conf['plugin']['authmysql']['FilterLogin'] = "login LIKE '%{user}'";
126 $conf['plugin']['authmysql']['FilterName'] = "CONCAT(firstname,' ',lastname) LIKE '%{name}'";
127 $conf['plugin']['authmysql']['FilterEmail'] = "email LIKE '%{email}'";
128 $conf['plugin']['authmysql']['FilterGroup'] = "name LIKE '%{group}'";
129 $conf['plugin']['authmysql']['SortOrder'] = "ORDER BY login";
144 $conf['plugin']['authmysql']['addUser'] = "INSERT INTO users
154 $conf['plugin']['authmysql']['addGroup'] = "INSERT INTO groups (name)
165 $conf['plugin']['authmysql']['addUserGroup']= "INSERT INTO usergroup (uid, gid)
173 $conf['plugin']['authmysql']['delGroup'] = "DELETE FROM groups
177 * The plugin will access the index with the name 'id' so an alias might be
182 $conf['plugin']['authmysql']['getUserID'] = "SELECT uid AS id
195 $conf['plugin']['authmysql']['delUser'] = "DELETE FROM users
203 $conf['plugin']['authmysql']['delUserRefs'] = "DELETE FROM usergroup
221 $conf['plugin']['authmysql']['updateUser'] = "UPDATE users SET";
222 $conf['plugin']['authmysql']['UpdateLogin'] = "login='%{user}'";
223 $conf['plugin']['authmysql']['UpdatePass'] = "pass='%{pass}'";
224 $conf['plugin']['authmysql']['UpdateEmail'] = "email='%{email}'";
225 $conf['plugin']['authmysql']['UpdateName'] = "firstname=SUBSTRING_INDEX('%{name}',' ', 1),
227 $conf['plugin']['authmysql']['UpdateTarget']= "WHERE uid=%{uid}";
238 $conf['plugin']['authmysql']['delUserGroup']= "DELETE FROM usergroup
243 * The plugin will access the index with the name 'id' so an alias might
249 $conf['plugin']['authmysql']['getGroupID'] = "SELECT gid AS id