xref: /dokuwiki/lib/plugins/authldap/conf/metadata.php (revision 10bf81481e437a9c202db678672484b74c05bbf6)
1*10bf8148SAndreas Gohr<?php
2*10bf8148SAndreas Gohr$meta['server']      = array('string');
3*10bf8148SAndreas Gohr$meta['port']        = array('numeric');
4*10bf8148SAndreas Gohr$meta['usertree']    = array('string');
5*10bf8148SAndreas Gohr$meta['grouptree']   = array('string');
6*10bf8148SAndreas Gohr$meta['userfilter']  = array('string');
7*10bf8148SAndreas Gohr$meta['groupfilter'] = array('string');
8*10bf8148SAndreas Gohr$meta['version']     = array('numeric');
9*10bf8148SAndreas Gohr$meta['starttls']    = array('onoff');
10*10bf8148SAndreas Gohr$meta['referrals']   = array('onoff');
11*10bf8148SAndreas Gohr$meta['binddn']      = array('string');
12*10bf8148SAndreas Gohr$meta['bindpw']      = array('password');
13*10bf8148SAndreas Gohr//$meta['mapping']['name']  unsupported in config manager
14*10bf8148SAndreas Gohr//$meta['mapping']['grps']  unsupported in config manager
15*10bf8148SAndreas Gohr$meta['userscope']   = array('multichoice','_choices' => array('sub','one','base'));
16*10bf8148SAndreas Gohr$meta['groupscope']  = array('multichoice','_choices' => array('sub','one','base'));
17*10bf8148SAndreas Gohr$meta['debug']       = array('onoff');