xref: /dokuwiki/lib/plugins/authpdo/conf/default.php (revision 4fb8dfab9fa5bc3e6249a16d39713415988a5ec2)
1<?php
2/**
3 * Default settings for the authpdo plugin
4 *
5 * @author Andreas Gohr <andi@splitbrain.org>
6 */
7
8
9$conf['debug'] = 0;
10$conf['dsn'] = '';
11$conf['user'] = '';
12$conf['pass'] = '';
13
14/**
15 * statement to select a single user identified by its login name
16 *
17 * input: :user
18 * return: user, name, mail, (clear|hash), [uid], [*]
19 */
20$conf['select-user'] = '';
21
22/**
23 * Select all the existing group names
24 *
25 * return: group, [gid], [*]
26 */
27$conf['select-group'] = '';
28
29/**
30 * Create a new user
31 *
32 * input: :user, :name, :mail, (:clear|:hash)
33 */
34$conf['insert-user'] = '';
35
36/**
37 * Update user data (except password and user name)
38 *
39 * input: :user, :name, :mail, [:uid], [*]
40 */
41$conf['update-user-info'] = '';
42
43/**
44 * Update user name aka login
45 *
46 * input: :user, :newlogin, [:uid], [*]
47 */
48$conf['update-user-login'] = '';
49
50/**
51 * Update user password
52 *
53 * input: :user, :clear, :hash, [:uid], [*]
54 */
55$conf['update-user-pass'] = '';
56
57/**
58 * Create a new group
59 *
60 * input: :group
61 */
62$conf['insert-group'] = '';
63
64/**
65 * Make user join group
66 *
67 * input: :user, [:uid], group, [:gid], [*]
68 */
69$conf['join-group'] = '';
70
71/**
72 * Make user leave group
73 *
74 * input: :user, [:uid], group, [:gid], [*]
75 */
76$conf['leave-group'] = '';
77