xref: /dokuwiki/lib/plugins/config/settings/config.metadata.php (revision 4fa2dffce72d182e25295de4947077cf52ba1f2b)
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:
1410449332Schris *   Generic
1510449332Schris *   -------------
1610449332Schris *   ''             - default class ('setting'), text input, minimal input validation, setting output in quotes
1710449332Schris *   'numeric'      - text input, accepts numbers and arithmetic operators, setting output without quotes
1810449332Schris *   'onoff'        - checkbox input, setting output  0|1
1910449332Schris *   'multichoice'  - select input (single choice), setting output with quotes, required _choices parameter
2010449332Schris *   'email'        - text input, input must conform to email address format, setting output in quotes
2110449332Schris *   'password'     - password input, minimal input validation, setting output plain text in quotes
2210449332Schris *   'dirchoice'    - as multichoice, selection choices based on folders found at location specified in _dir
2310449332Schris *                    parameter (required)
24*4fa2dffcSBen Coburn *   'fieldset'     - used to group configuration settings, but is not itself a setting. To make this clear in
25*4fa2dffcSBen Coburn *                    the language files the keys for this type should start with '_'.
2610449332Schris *
2710449332Schris *  Single Setting
2810449332Schris *  --------------
2910449332Schris *   'savedir'     - as 'setting', input tested against initpath() (inc/init.php)
3010449332Schris *   'sepchar'     - as multichoice, selection constructed from string of valid values
3110449332Schris *   'authtype'    - as 'setting', input validated against a valid php file at expected location for auth files
3210449332Schris *   'im_convert'  - as 'setting', input must exist and be an im_convert module
3310449332Schris *
3410449332Schris *  Any setting commented or missing will use 'setting' class - text input, minimal validation, quoted output
3510449332Schris *
3610449332Schris * Defined parameters:
3710449332Schris *   '_pattern'    - string, a preg pattern. input is tested against this pattern before being accepted
3810449332Schris *                   optional all classes, except onoff, multichoice & dirchoice which ignore it
3910449332Schris *   '_choices'    - array of choices. used to populate a selection box. choice will be replaced by a localised
4010449332Schris *                   language string, indexed by  <setting name>_o_<choice>, if one exists
4110449332Schris *                   required by 'multichoice' class, ignored by other classes
4210449332Schris *   '_dir'        - location of directory to be used to populate choice list
4310449332Schris *                   required by 'dirchoice' class, ignored by other classes
4410449332Schris *
4510449332Schris * @author    Chris Smith <chris@jalakai.co.uk>
4610449332Schris */
4710449332Schris// ---------------[ settings for settings ]------------------------------
4810449332Schris$config['format']  = 'php';      // format of setting files, supported formats: php
4910449332Schris$config['varname'] = 'conf';     // name of the config variable, sans $
5010449332Schris
5110449332Schris// this string is written at the top of the rewritten settings file,
5210449332Schris// !! do not include any comment indicators !!
5310449332Schris// this value can be overriden when calling save_settings() method
5410449332Schris$config['heading'] = 'Dokuwiki\'s Main Configuration File - Local Settings';
5510449332Schris
5610449332Schris// ---------------[ setting files ]--------------------------------------
5710449332Schris// these values can be string expressions, they will be eval'd before use
5810449332Schris$file['local']     = "DOKU_CONF.'local.php'";            // mandatory (file doesn't have to exist)
5910449332Schris$file['default']   = "DOKU_CONF.'dokuwiki.php'";         // optional
6010449332Schris$file['protected'] = "DOKU_CONF.'local.protected.php'";  // optional
6110449332Schris
6210449332Schris// test value (FIXME, remove before publishing)
6310449332Schris//$meta['test']     = array('multichoice','_choices' => array(''));
6410449332Schris
6510449332Schris// --------------[ setting metadata ]------------------------------------
6610449332Schris// - for description of format and fields see top of file
6710449332Schris// - order the settings in the order you wish them to appear
6810449332Schris// - any settings not mentioned will come after the last setting listed and
6910449332Schris//   will use the default class with no parameters
7010449332Schris
71*4fa2dffcSBen Coburn$meta['_basic']   = array('fieldset');
7291f04971SAndreas Gohr$meta['title']    = array('string');
7391f04971SAndreas Gohr$meta['start']    = array('string');
7410449332Schris$meta['lang']     = array('dirchoice','_dir' => DOKU_INC.'inc/lang/');
7510449332Schris$meta['template'] = array('dirchoice','_dir' => DOKU_INC.'lib/tpl/');
76*4fa2dffcSBen Coburn$meta['savedir']  = array('savedir');
7791f04971SAndreas Gohr$meta['basedir']  = array('string');
7891f04971SAndreas Gohr$meta['baseurl']  = array('string');
79*4fa2dffcSBen Coburn$meta['dmode']    = array('numeric','_pattern' => '/0[0-7]{3}/');  // only accept octal representation
80*4fa2dffcSBen Coburn$meta['fmode']    = array('numeric','_pattern' => '/0[0-7]{3}/');  // only accept octal representation
81*4fa2dffcSBen Coburn$meta['allowdebug']  = array('onoff');
8210449332Schris
83*4fa2dffcSBen Coburn$meta['_display']    = array('fieldset');
8410449332Schris$meta['recent']      = array('numeric');
8510449332Schris$meta['breadcrumbs'] = array('numeric');
8691f04971SAndreas Gohr$meta['youarehere']  = array('onoff');
87*4fa2dffcSBen Coburn$meta['fullpath']    = array('onoff');
8810449332Schris$meta['typography']  = array('onoff');
8991f04971SAndreas Gohr$meta['dformat']     = array('string');
9091f04971SAndreas Gohr$meta['signature']   = array('string');
9110449332Schris$meta['toptoclevel'] = array('multichoice','_choices' => array(1,2,3,4,5));   // 5 toc levels
92220c8709Schris$meta['maxtoclevel'] = array('multichoice','_choices' => array(0,1,2,3,4,5));
9310449332Schris$meta['maxseclevel'] = array('multichoice','_choices' => array(0,1,2,3,4,5)); // 0 for no sec edit buttons
9410449332Schris$meta['camelcase']   = array('onoff');
954de01997Schris$meta['deaccent']    = array('multichoice','_choices' => array(0,1,2));
9610449332Schris$meta['useheading']  = array('onoff');
9710449332Schris$meta['refcheck']    = array('onoff');
9810449332Schris$meta['refshow']     = array('numeric');
9910449332Schris
100*4fa2dffcSBen Coburn$meta['_authentication'] = array('fieldset');
10110449332Schris$meta['useacl']      = array('onoff');
10210449332Schris$meta['openregister']= array('onoff');
10310449332Schris$meta['autopasswd']  = array('onoff');
104b174aeaeSchris$meta['resendpasswd'] = array('onoff');
10510449332Schris$meta['authtype']    = array('authtype');
10610449332Schris$meta['passcrypt']   = array('multichoice','_choices' => array('smd5','md5','sha1','ssha','crypt','mysql','my411'));
10791f04971SAndreas Gohr$meta['defaultgroup']= array('string');
10891f04971SAndreas Gohr$meta['superuser']   = array('string');
10910449332Schris$meta['profileconfirm'] = array('onoff');
11010449332Schris
111*4fa2dffcSBen Coburn$meta['_anti_spam']  = array('fieldset');
112*4fa2dffcSBen Coburn$meta['usewordblock']= array('onoff');
113*4fa2dffcSBen Coburn$meta['relnofollow'] = array('onoff');
114*4fa2dffcSBen Coburn$meta['indexdelay']  = array('numeric');
115*4fa2dffcSBen Coburn$meta['mailguard']   = array('multichoice','_choices' => array('visible','hex','none'));
116*4fa2dffcSBen Coburn
117*4fa2dffcSBen Coburn$meta['_editing']    = array('fieldset');
11817e7a281SBen Coburn$meta['usedraft']    = array('onoff');
119*4fa2dffcSBen Coburn$meta['spellchecker']= array('onoff');
120*4fa2dffcSBen Coburn$meta['htmlok']      = array('onoff');
121*4fa2dffcSBen Coburn$meta['phpok']       = array('onoff');
122*4fa2dffcSBen Coburn$meta['notify']      = array('email');
123*4fa2dffcSBen Coburn$meta['subscribers'] = array('onoff');
12410449332Schris$meta['purgeonadd']  = array('onoff');
12510449332Schris$meta['locktime']    = array('numeric');
126*4fa2dffcSBen Coburn$meta['cachetime']   = array('numeric');
12710449332Schris
128*4fa2dffcSBen Coburn$meta['_links']    = array('fieldset');
12991f04971SAndreas Gohr$meta['target____wiki']      = array('string');
13091f04971SAndreas Gohr$meta['target____interwiki'] = array('string');
13191f04971SAndreas Gohr$meta['target____extern']    = array('string');
13291f04971SAndreas Gohr$meta['target____media']     = array('string');
13391f04971SAndreas Gohr$meta['target____windows']   = array('string');
13410449332Schris
135*4fa2dffcSBen Coburn$meta['_advanced']   = array('fieldset');
136*4fa2dffcSBen Coburn$meta['userewrite']  = array('multichoice','_choices' => array(0,1,2));
137*4fa2dffcSBen Coburn$meta['useslash']    = array('onoff');
138*4fa2dffcSBen Coburn$meta['sepchar']     = array('sepchar');
139*4fa2dffcSBen Coburn$meta['canonical']   = array('onoff');
140*4fa2dffcSBen Coburn$meta['autoplural']  = array('onoff');
141*4fa2dffcSBen Coburn$meta['usegzip']     = array('onoff');
142*4fa2dffcSBen Coburn$meta['mailfrom']    = array('email');
143*4fa2dffcSBen Coburn$meta['gdlib']       = array('multichoice','_choices' => array(0,1,2));
144*4fa2dffcSBen Coburn$meta['im_convert']  = array('im_convert');
145*4fa2dffcSBen Coburn$meta['compress']    = array('onoff');
146*4fa2dffcSBen Coburn$meta['hidepages']   = array('string');
147*4fa2dffcSBen Coburn$meta['send404']     = array('onoff');
148*4fa2dffcSBen Coburn$meta['sitemap']     = array('numeric');
149*4fa2dffcSBen Coburn$meta['rss_type']    = array('multichoice','_choices' => array('rss','rss1','rss2','atom'));
150*4fa2dffcSBen Coburn$meta['rss_linkto']  = array('multichoice','_choices' => array('diff','page','rev','current'));
151*4fa2dffcSBen Coburn$meta['rss_update']  = array('numeric');
152*4fa2dffcSBen Coburn
153*4fa2dffcSBen Coburn$meta['_network']    = array('fieldset');
15491f04971SAndreas Gohr$meta['proxy____host'] = array('string','_pattern' => '#^[a-z0-9\-\.+]+?#i');
15510449332Schris$meta['proxy____port'] = array('numeric');
15691f04971SAndreas Gohr$meta['proxy____user'] = array('string');
15710449332Schris$meta['proxy____pass'] = array('password');
15810449332Schris$meta['proxy____ssl']  = array('onoff');
15910449332Schris$meta['safemodehack'] = array('onoff');
16091f04971SAndreas Gohr$meta['ftp____host']  = array('string','_pattern' => '#^[a-z0-9\-\.+]+?#i');
16110449332Schris$meta['ftp____port']  = array('numeric');
16291f04971SAndreas Gohr$meta['ftp____user']  = array('string');
16310449332Schris$meta['ftp____pass']  = array('password');
16491f04971SAndreas Gohr$meta['ftp____root']  = array('string');
16510449332Schris
166