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