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/** 16*70a89417SAndreas Gohr * statement to select a single user identified by its login name 17f64dbc90SAndreas Gohr * 18*70a89417SAndreas Gohr * input: :user 19*70a89417SAndreas Gohr * return: user, name, mail, (clear|hash), [uid], [*] 20f64dbc90SAndreas Gohr */ 21f64dbc90SAndreas Gohr$conf['select-user'] = ''; 22*70a89417SAndreas Gohr 23*70a89417SAndreas Gohr/** 24*70a89417SAndreas Gohr * Select all the group names a user is member of 25*70a89417SAndreas Gohr * 26*70a89417SAndreas Gohr * input: :user, [:uid], [*] 27*70a89417SAndreas Gohr * return: group 28*70a89417SAndreas Gohr */ 29*70a89417SAndreas Gohr$conf['select-user-group'] = ''; 30