1f64dbc90SAndreas Gohr<?php 2f64dbc90SAndreas Gohr/** 3f64dbc90SAndreas Gohr * Options for the authpdo plugin 4f64dbc90SAndreas Gohr * 5f64dbc90SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 6f64dbc90SAndreas Gohr */ 7f64dbc90SAndreas Gohr 8*c27579a6SAndreas Gohr$meta['debug'] = array('onoff', '_caution' => 'security'); 9*c27579a6SAndreas Gohr$meta['dsn'] = array('string', '_caution' => 'danger'); 10*c27579a6SAndreas Gohr$meta['user'] = array('string', '_caution' => 'danger'); 11*c27579a6SAndreas Gohr$meta['pass'] = array('password', '_caution' => 'danger'); 12*c27579a6SAndreas Gohr$meta['select-user'] = array('', '_caution' => 'danger'); 13*c27579a6SAndreas Gohr$meta['select-user-groups'] = array('', '_caution' => 'danger'); 14*c27579a6SAndreas Gohr$meta['select-groups'] = array('', '_caution' => 'danger'); 15*c27579a6SAndreas Gohr$meta['insert-user'] = array('', '_caution' => 'danger'); 16*c27579a6SAndreas Gohr$meta['delete-user'] = array('', '_caution' => 'danger'); 17*c27579a6SAndreas Gohr$meta['list-users'] = array('', '_caution' => 'danger'); 18*c27579a6SAndreas Gohr$meta['count-users'] = array('', '_caution' => 'danger'); 19*c27579a6SAndreas Gohr$meta['update-user-info'] = array('', '_caution' => 'danger'); 20*c27579a6SAndreas Gohr$meta['update-user-login'] = array('', '_caution' => 'danger'); 21*c27579a6SAndreas Gohr$meta['update-user-pass'] = array('', '_caution' => 'danger'); 22*c27579a6SAndreas Gohr$meta['insert-group'] = array('', '_caution' => 'danger'); 23*c27579a6SAndreas Gohr$meta['join-group'] = array('', '_caution' => 'danger'); 24*c27579a6SAndreas Gohr$meta['leave-group'] = array('', '_caution' => 'danger'); 25f64dbc90SAndreas Gohr 26f64dbc90SAndreas Gohr 27