xref: /plugin/pureldap/conf/metadata.php (revision 9446f9efcf6a07f32e7ce6e6706899c1a2a9ef42)
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
10$meta['servers'] = array('array');
11$meta['port'] = array('string');
12
13$meta['encryption'] = array('multichoice', '_choices' => array('none', 'ssl', 'tls'));
14$meta['validate'] = array('multichoice', '_choices' => array('strict','self', 'none'));
15
16$meta['admin_username'] = array('string');
17$meta['admin_password'] = array('password');
18
19
20