xref: /dokuwiki/lib/plugins/authpdo/conf/default.php (revision f64dbc90055403db700941e4691ea451bb971cef)
1*f64dbc90SAndreas Gohr<?php
2*f64dbc90SAndreas Gohr/**
3*f64dbc90SAndreas Gohr * Default settings for the authpdo plugin
4*f64dbc90SAndreas Gohr *
5*f64dbc90SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
6*f64dbc90SAndreas Gohr */
7*f64dbc90SAndreas Gohr
8*f64dbc90SAndreas Gohr//$conf['fixme']    = 'FIXME';
9*f64dbc90SAndreas Gohr
10*f64dbc90SAndreas Gohr$conf['debug'] = 0;
11*f64dbc90SAndreas Gohr$conf['dsn'] = '';
12*f64dbc90SAndreas Gohr$conf['user'] = '';
13*f64dbc90SAndreas Gohr$conf['pass'] = '';
14*f64dbc90SAndreas Gohr
15*f64dbc90SAndreas Gohr/**
16*f64dbc90SAndreas Gohr * statement to select a single user identified by its login name given as :user
17*f64dbc90SAndreas Gohr *
18*f64dbc90SAndreas Gohr * return; user, name, mail, (clear|hash), [uid]
19*f64dbc90SAndreas Gohr * other fields are returned but not used
20*f64dbc90SAndreas Gohr */
21*f64dbc90SAndreas Gohr$conf['select-user'] = '';
22