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