xref: /dokuwiki/lib/plugins/authpdo/conf/default.php (revision f64dbc90055403db700941e4691ea451bb971cef)
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 given as :user
17 *
18 * return; user, name, mail, (clear|hash), [uid]
19 * other fields are returned but not used
20 */
21$conf['select-user'] = '';
22