xref: /plugin/pureldap/conf/metadata.php (revision 0da90260076cd89dd000463a99febc0cd0f225ac)
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['recursivegroups'] = array('onoff');
23$meta['usefscache'] = array('onoff');
24$meta['page_size'] = array('numeric', '_min' => 1);
25
26$meta['sso'] = array('onoff');
27$meta['sso_charset'] = array('string');
28