179f39653SAndreas Gohr<?php 279f39653SAndreas Gohr/** 379f39653SAndreas Gohr * Options for the pureldap plugin 479f39653SAndreas Gohr * 579f39653SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 679f39653SAndreas Gohr */ 779f39653SAndreas Gohr 86d90d5c8SAndreas Gohr$meta['base_dn'] = array('string'); 979f39653SAndreas Gohr 101078ec26SAndreas Gohr$meta['servers'] = array('array'); 111078ec26SAndreas Gohr$meta['port'] = array('string'); 126d90d5c8SAndreas Gohr 136d90d5c8SAndreas Gohr$meta['encryption'] = array('multichoice', '_choices' => array('none', 'ssl', 'tls')); 146d90d5c8SAndreas Gohr$meta['validate'] = array('multichoice', '_choices' => array('strict', 'self', 'none')); 156d90d5c8SAndreas Gohr 169446f9efSAndreas Gohr$meta['admin_username'] = array('string'); 176d90d5c8SAndreas Gohr$meta['admin_password'] = array('password'); 184b0f7b75SAndreas Gohr 19*b914569fSAndreas Gohr$meta['attributes'] = array('array'); 204b0f7b75SAndreas Gohr$meta['page_size'] = array('numeric', '_min' => 1); 216d90d5c8SAndreas Gohr 2279f39653SAndreas Gohr 23