xref: /dokuwiki/lib/plugins/authpdo/conf/default.php (revision 5de3a6a5ad40cfd5f62c9a028f248d53e3f9da6d)
1<?php
2/**
3 * Default settings for the authpdo plugin
4 *
5 * @author Andreas Gohr <andi@splitbrain.org>
6 */
7
8//$conf['fixme']    = 'FIXME';
9
10$conf['debug'] = 0;
11$conf['dsn'] = '';
12$conf['user'] = '';
13$conf['pass'] = '';
14
15/**
16 * statement to select a single user identified by its login name
17 *
18 * input: :user
19 * return: user, name, mail, (clear|hash), [uid], [*]
20 */
21$conf['select-user'] = '';
22
23/**
24 * Select all the existing group names
25 *
26 * return: group, [gid], [*]
27 */
28$conf['select-group'] = '';
29
30/**
31 * Create a new user
32 *
33 * input: :user, :name, :mail, (:clear,:hash)
34 */
35$conf['insert-user'] = '';
36
37/**
38 * Create a new group
39 *
40 * input: :group
41 */
42$conf['insert-group'] = '';
43
44/**
45 * Make user join group
46 *
47 * input: :user, [:uid], group, [:gid], [*]
48 */
49$conf['join-group'] = '';
50