xref: /plugin/pureldap/conf/metadata.php (revision fd0855eca89b78737f4256f2dab98af86002431b)
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_user'] = array('string');
17$meta['admin_password'] = array('password');
18
19
20