xref: /plugin/pureldap/conf/metadata.php (revision 0cddcb29f86ce3ae27d374963190b6848906270e)
1<?php
2/**
3 * Options for the pureldap plugin
4 *
5 * @author Andreas Gohr <andi@splitbrain.org>
6 */
7
8$meta['base_dn'] = array('string');
9$meta['suffix'] = array('string');
10
11$meta['servers'] = array('array');
12$meta['port'] = array('string');
13
14$meta['encryption'] = array('multichoice', '_choices' => array('none', 'ssl', 'tls'));
15$meta['validate'] = array('multichoice', '_choices' => array('strict', 'self', 'none'));
16
17$meta['admin_username'] = array('string');
18$meta['admin_password'] = array('password');
19
20$meta['attributes'] = array('array');
21$meta['primarygroup'] = array('string');
22$meta['page_size'] = array('numeric', '_min' => 1);
23
24
25