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