1<?php
2/*
3 * Visio plugin, configuration metadata
4 *
5 * @author    Marc Hauswirth <marc@practeo.ch>
6 *
7 *   ''             - default class ('setting'), textarea, minimal input validation, setting output in quotes
8 *   'string'       - single line text input, minimal input validation, setting output in quotes
9 *   'numeric'      - text input, accepts numbers and arithmetic operators, setting output without quotes
10 *   'numericopt'   - like above, but accepts empty values
11 *   'onoff'        - checkbox input, setting output  0|1
12 *   'multichoice'  - select input (single choice), setting output with quotes, required _choices parameter
13 *   'email'        - text input, input must conform to email address format, setting output in quotes
14 *   'password'     - password input, minimal input validation, setting output plain text in quotes
15 *   'dirchoice'    - as multichoice, selection choices based on folders found at location specified in _dir
16 *                    parameter (required)
17 *   'multicheckbox'- a checkbox for each choice plus an "other" string input, config file setting is a comma
18 *                    separated list of checked choices
19 *   'fieldset'     - used to group configuration settings, but is not itself a setting. To make this clear in
20 *                    the language files the keys for this type should start with '_'.
21 *
22 */
23
24$meta['classid']  = array('string');
25$meta['codebase'] = array('string');
26$meta['width']    = array('string');
27$meta['height']   = array('string');
28
29