xref: /dokuwiki/lib/plugins/config/settings/config.metadata.php (revision 306ca8aa54954ea2623d9e4927a2c07b9efdfea3)
110449332Schris<?php
210449332Schris/**
310449332Schris * Metadata for configuration manager plugin
410449332Schris *
510449332Schris * Note:  This file should be included within a function to ensure it
6862763f2Schris *        doesn't clash with the settings it is describing.
710449332Schris *
810449332Schris * Format:
910449332Schris *   $meta[<setting name>] = array(<handler class id>,<param name> => <param value>);
1010449332Schris *
1110449332Schris *   <handler class id>  is the handler class name without the "setting_" prefix
1210449332Schris *
1310449332Schris * Defined classes:
14*306ca8aaSchris *   Generic (source: settings/config.class.php)
15*306ca8aaSchris *   -------------------------------------------
16e8a6bae4Schris *   ''             - default class ('setting'), textarea, minimal input validation, setting output in quotes
17e8a6bae4Schris *   'string'       - single line text input, minimal input validation, setting output in quotes
1810449332Schris *   'numeric'      - text input, accepts numbers and arithmetic operators, setting output without quotes
1910449332Schris *   'onoff'        - checkbox input, setting output  0|1
2010449332Schris *   'multichoice'  - select input (single choice), setting output with quotes, required _choices parameter
2110449332Schris *   'email'        - text input, input must conform to email address format, setting output in quotes
2210449332Schris *   'password'     - password input, minimal input validation, setting output plain text in quotes
2310449332Schris *   'dirchoice'    - as multichoice, selection choices based on folders found at location specified in _dir
2410449332Schris *                    parameter (required)
25*306ca8aaSchris *   'multicheckbox'- a checkbox for each choice plus an "other" string input, config file setting is a comma
26*306ca8aaSchris *                    separated list of checked choices
274fa2dffcSBen Coburn *   'fieldset'     - used to group configuration settings, but is not itself a setting. To make this clear in
284fa2dffcSBen Coburn *                    the language files the keys for this type should start with '_'.
2910449332Schris *
30*306ca8aaSchris *  Single Setting (source: settings/extra.class.php)
31*306ca8aaSchris *  -------------------------------------------------
3210449332Schris *   'savedir'     - as 'setting', input tested against initpath() (inc/init.php)
3310449332Schris *   'sepchar'     - as multichoice, selection constructed from string of valid values
3410449332Schris *   'authtype'    - as 'setting', input validated against a valid php file at expected location for auth files
3510449332Schris *   'im_convert'  - as 'setting', input must exist and be an im_convert module
36*306ca8aaSchris *   'disableactions' - as 'setting'
3710449332Schris *
3810449332Schris *  Any setting commented or missing will use 'setting' class - text input, minimal validation, quoted output
3910449332Schris *
4010449332Schris * Defined parameters:
4110449332Schris *   '_pattern'    - string, a preg pattern. input is tested against this pattern before being accepted
4210449332Schris *                   optional all classes, except onoff, multichoice & dirchoice which ignore it
4310449332Schris *   '_choices'    - array of choices. used to populate a selection box. choice will be replaced by a localised
4410449332Schris *                   language string, indexed by  <setting name>_o_<choice>, if one exists
45*306ca8aaSchris *                   required by 'multichoice' & 'multicheckbox' classes, ignored by others
4610449332Schris *   '_dir'        - location of directory to be used to populate choice list
4710449332Schris *                   required by 'dirchoice' class, ignored by other classes
48*306ca8aaSchris *   '_combine'    - complimentary output setting values which can be combined into a single display checkbox
49*306ca8aaSchris *                   optional for 'multicheckbox', ignored by other classes
5010449332Schris *
5110449332Schris * @author    Chris Smith <chris@jalakai.co.uk>
5210449332Schris */
5310449332Schris// ---------------[ settings for settings ]------------------------------
5410449332Schris$config['format']  = 'php';      // format of setting files, supported formats: php
5510449332Schris$config['varname'] = 'conf';     // name of the config variable, sans $
5610449332Schris
5710449332Schris// this string is written at the top of the rewritten settings file,
5810449332Schris// !! do not include any comment indicators !!
5910449332Schris// this value can be overriden when calling save_settings() method
6010449332Schris$config['heading'] = 'Dokuwiki\'s Main Configuration File - Local Settings';
6110449332Schris
6210449332Schris// ---------------[ setting files ]--------------------------------------
6310449332Schris// these values can be string expressions, they will be eval'd before use
6410449332Schris$file['local']     = "DOKU_CONF.'local.php'";            // mandatory (file doesn't have to exist)
6510449332Schris$file['default']   = "DOKU_CONF.'dokuwiki.php'";         // optional
6610449332Schris$file['protected'] = "DOKU_CONF.'local.protected.php'";  // optional
6710449332Schris
6810449332Schris// test value (FIXME, remove before publishing)
6910449332Schris//$meta['test']     = array('multichoice','_choices' => array(''));
7010449332Schris
7110449332Schris// --------------[ setting metadata ]------------------------------------
7210449332Schris// - for description of format and fields see top of file
7310449332Schris// - order the settings in the order you wish them to appear
7410449332Schris// - any settings not mentioned will come after the last setting listed and
7510449332Schris//   will use the default class with no parameters
7610449332Schris
774fa2dffcSBen Coburn$meta['_basic']   = array('fieldset');
7891f04971SAndreas Gohr$meta['title']    = array('string');
7991f04971SAndreas Gohr$meta['start']    = array('string');
8010449332Schris$meta['lang']     = array('dirchoice','_dir' => DOKU_INC.'inc/lang/');
8110449332Schris$meta['template'] = array('dirchoice','_dir' => DOKU_INC.'lib/tpl/');
824fa2dffcSBen Coburn$meta['savedir']  = array('savedir');
8391f04971SAndreas Gohr$meta['basedir']  = array('string');
8491f04971SAndreas Gohr$meta['baseurl']  = array('string');
854fa2dffcSBen Coburn$meta['dmode']    = array('numeric','_pattern' => '/0[0-7]{3}/');  // only accept octal representation
864fa2dffcSBen Coburn$meta['fmode']    = array('numeric','_pattern' => '/0[0-7]{3}/');  // only accept octal representation
874fa2dffcSBen Coburn$meta['allowdebug']  = array('onoff');
8810449332Schris
894fa2dffcSBen Coburn$meta['_display']    = array('fieldset');
9010449332Schris$meta['recent']      = array('numeric');
9110449332Schris$meta['breadcrumbs'] = array('numeric');
9291f04971SAndreas Gohr$meta['youarehere']  = array('onoff');
934fa2dffcSBen Coburn$meta['fullpath']    = array('onoff');
9410449332Schris$meta['typography']  = array('onoff');
9591f04971SAndreas Gohr$meta['dformat']     = array('string');
9691f04971SAndreas Gohr$meta['signature']   = array('string');
9710449332Schris$meta['toptoclevel'] = array('multichoice','_choices' => array(1,2,3,4,5));   // 5 toc levels
98220c8709Schris$meta['maxtoclevel'] = array('multichoice','_choices' => array(0,1,2,3,4,5));
9910449332Schris$meta['maxseclevel'] = array('multichoice','_choices' => array(0,1,2,3,4,5)); // 0 for no sec edit buttons
10010449332Schris$meta['camelcase']   = array('onoff');
1014de01997Schris$meta['deaccent']    = array('multichoice','_choices' => array(0,1,2));
10210449332Schris$meta['useheading']  = array('onoff');
10310449332Schris$meta['refcheck']    = array('onoff');
10410449332Schris$meta['refshow']     = array('numeric');
10510449332Schris
1064fa2dffcSBen Coburn$meta['_authentication'] = array('fieldset');
10710449332Schris$meta['useacl']      = array('onoff');
10810449332Schris$meta['autopasswd']  = array('onoff');
10910449332Schris$meta['authtype']    = array('authtype');
11010449332Schris$meta['passcrypt']   = array('multichoice','_choices' => array('smd5','md5','sha1','ssha','crypt','mysql','my411'));
11191f04971SAndreas Gohr$meta['defaultgroup']= array('string');
11291f04971SAndreas Gohr$meta['superuser']   = array('string');
11310449332Schris$meta['profileconfirm'] = array('onoff');
1148a1f5d50SAndreas Gohr$meta['registernotify'] = array('email');
115*306ca8aaSchris$meta['disableactions'] = array('disableactions',
116*306ca8aaSchris                                '_choices' => array('backlink','index','recent','revisions','search','subscription','register','resendpwd','profile','edit','wikicode','check'),
117*306ca8aaSchris                                '_combine' => array('subscription' => array('subscribe','unsubscribe'), 'wikicode' => array('source','export_raw')));
11810449332Schris
1194fa2dffcSBen Coburn$meta['_anti_spam']  = array('fieldset');
1204fa2dffcSBen Coburn$meta['usewordblock']= array('onoff');
1214fa2dffcSBen Coburn$meta['relnofollow'] = array('onoff');
1224fa2dffcSBen Coburn$meta['indexdelay']  = array('numeric');
1234fa2dffcSBen Coburn$meta['mailguard']   = array('multichoice','_choices' => array('visible','hex','none'));
1244fa2dffcSBen Coburn
1254fa2dffcSBen Coburn$meta['_editing']    = array('fieldset');
12617e7a281SBen Coburn$meta['usedraft']    = array('onoff');
1274fa2dffcSBen Coburn$meta['spellchecker']= array('onoff');
1284fa2dffcSBen Coburn$meta['htmlok']      = array('onoff');
1294fa2dffcSBen Coburn$meta['phpok']       = array('onoff');
1304fa2dffcSBen Coburn$meta['notify']      = array('email');
1314fa2dffcSBen Coburn$meta['subscribers'] = array('onoff');
13210449332Schris$meta['purgeonadd']  = array('onoff');
13310449332Schris$meta['locktime']    = array('numeric');
1344fa2dffcSBen Coburn$meta['cachetime']   = array('numeric');
13510449332Schris
1364fa2dffcSBen Coburn$meta['_links']    = array('fieldset');
13791f04971SAndreas Gohr$meta['target____wiki']      = array('string');
13891f04971SAndreas Gohr$meta['target____interwiki'] = array('string');
13991f04971SAndreas Gohr$meta['target____extern']    = array('string');
14091f04971SAndreas Gohr$meta['target____media']     = array('string');
14191f04971SAndreas Gohr$meta['target____windows']   = array('string');
14210449332Schris
1432b03e74dSBen Coburn$meta['_media']      = array('fieldset');
1442b03e74dSBen Coburn$meta['gdlib']       = array('multichoice','_choices' => array(0,1,2));
1452b03e74dSBen Coburn$meta['im_convert']  = array('im_convert');
1462b03e74dSBen Coburn$meta['jpg_quality'] = array('numeric','_pattern' => '/^100$|^[1-9]?[0-9]$/');  //(0-100)
1478a1f5d50SAndreas Gohr$meta['fetchsize']   = array('numeric');
1482b03e74dSBen Coburn
1494fa2dffcSBen Coburn$meta['_advanced']   = array('fieldset');
1504fa2dffcSBen Coburn$meta['userewrite']  = array('multichoice','_choices' => array(0,1,2));
1514fa2dffcSBen Coburn$meta['useslash']    = array('onoff');
1524fa2dffcSBen Coburn$meta['sepchar']     = array('sepchar');
1534fa2dffcSBen Coburn$meta['canonical']   = array('onoff');
1544fa2dffcSBen Coburn$meta['autoplural']  = array('onoff');
1554fa2dffcSBen Coburn$meta['mailfrom']    = array('email');
1564fa2dffcSBen Coburn$meta['compress']    = array('onoff');
157524be65dSBen Coburn$meta['gzip_output'] = array('onoff');
1584fa2dffcSBen Coburn$meta['hidepages']   = array('string');
1594fa2dffcSBen Coburn$meta['send404']     = array('onoff');
160524be65dSBen Coburn$meta['usegzip']     = array('onoff');
1614fa2dffcSBen Coburn$meta['sitemap']     = array('numeric');
1624fa2dffcSBen Coburn$meta['rss_type']    = array('multichoice','_choices' => array('rss','rss1','rss2','atom'));
1634fa2dffcSBen Coburn$meta['rss_linkto']  = array('multichoice','_choices' => array('diff','page','rev','current'));
1644fa2dffcSBen Coburn$meta['rss_update']  = array('numeric');
1654fa2dffcSBen Coburn
1664fa2dffcSBen Coburn$meta['_network']    = array('fieldset');
16791f04971SAndreas Gohr$meta['proxy____host'] = array('string','_pattern' => '#^[a-z0-9\-\.+]+?#i');
16810449332Schris$meta['proxy____port'] = array('numeric');
16991f04971SAndreas Gohr$meta['proxy____user'] = array('string');
17010449332Schris$meta['proxy____pass'] = array('password');
17110449332Schris$meta['proxy____ssl']  = array('onoff');
17210449332Schris$meta['safemodehack'] = array('onoff');
17391f04971SAndreas Gohr$meta['ftp____host']  = array('string','_pattern' => '#^[a-z0-9\-\.+]+?#i');
17410449332Schris$meta['ftp____port']  = array('numeric');
17591f04971SAndreas Gohr$meta['ftp____user']  = array('string');
17610449332Schris$meta['ftp____pass']  = array('password');
17791f04971SAndreas Gohr$meta['ftp____root']  = array('string');
17810449332Schris
179