1<?php 2/** 3 * Options for the authdrupal8 plugin 4 * 5 * @author jjancel <jjancel@dialoguesenhumanite.org> 6 */ 7 8$meta['database'] = array('string','_caution' => 'danger'); 9$meta['username'] = array('string','_caution' => 'danger'); 10$meta['password'] = array('password','_caution' => 'danger'); 11$meta['prefix'] = array('string','_caution' => 'danger'); 12$meta['host'] = array('string','_caution' => 'danger'); 13$meta['debug'] = array('multichoice','_choices' => array(0,1,2),'_caution' => 'security'); 14