1<?php 2/** 3 * Options for the jirainfo plugin 4 * 5 */ 6 7$meta['apiUser'] = array('string'); 8$meta['apiPass'] = array('password'); 9$meta['apiUrl'] = array('string'); 10$meta['popoverTrigger'] = array('multichoice', '_choices' => array('click', 'hover')); 11$meta['popoverPlacement'] = array('multichoice', '_choices' => array('top', 'right', 'bottom', 'left')); 12$meta['popoverAnimation'] = array('multichoice', '_choices' => array('none', 'pop', 'fade')); 13$meta['taskHideField'] = array('multicheckbox','_choices' => array('status','priority','issuetype','comment'));