1<?php
2// ---------------[ settings for settings ]------------------------------
3$config['format']  = 'php';      // format of setting files, supported formats: php
4$config['varname'] = 'conf';     // name of the config variable, sans $
5
6// this string is written at the top of the rewritten settings file,
7// !! do not include any comment indicators !!
8// this value can be overriden when calling save_settings() method
9
10$meta['title']  = array('string');
11$meta['tagline']  = array('string');
12
13$meta['ns']  = array('string');
14$meta['ns_inherit']  = array('onoff');
15$meta['default_startpage']	    = array('string');
16$meta['default_groups']		    = array('string');
17$meta['template']		    = array('dirchoice','_dir' => DOKU_INC.'lib/tpl/','_pattern' => '/^[\w-]+$/');
18$meta['disableactions']		    = array('disableactions',
19                                '_choices' => array('backlink','index','recent','revisions','search','subscription','register','resendpwd','profile','edit','wikicode','check'),
20                                '_combine' => array('subscription' => array('subscribe','unsubscribe'), 'wikicode' => array('source','export_raw')));
21