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$meta['attributes'] = array('array'); 20$meta['page_size'] = array('numeric', '_min' => 1); 21 22 23