add contents
This commit is contained in:
19
lib/plugins/pagelist/conf/default.php
Normal file
19
lib/plugins/pagelist/conf/default.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
/**
|
||||
* Options for the Pagelist Plugin
|
||||
*/
|
||||
$conf['style'] = 'default';
|
||||
$conf['showheader'] = 0;
|
||||
$conf['showdate'] = 1;
|
||||
$conf['showuser'] = 1;
|
||||
$conf['showdesc'] = 0;
|
||||
$conf['showcomments'] = 0;
|
||||
$conf['showlinkbacks']= 0;
|
||||
$conf['showtags'] = 0;
|
||||
$conf['showfirsthl'] = 1;
|
||||
$conf['showimage'] = 0;
|
||||
$conf['showdiff'] = 0;
|
||||
$conf['sort'] = 0;
|
||||
$conf['rsort'] = 0;
|
||||
|
||||
//Setup VIM: ex: et ts=2 :
|
24
lib/plugins/pagelist/conf/metadata.php
Normal file
24
lib/plugins/pagelist/conf/metadata.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
/**
|
||||
* Metadata for configuration manager plugin
|
||||
* Additions for the Pagelist Plugin
|
||||
*
|
||||
* @author Esther Brunner <wikidesign@gmail.com>
|
||||
*/
|
||||
|
||||
$meta['style'] = array('multichoice',
|
||||
'_choices' => array('default', 'table', 'list', 'simplelist'));
|
||||
$meta['showheader'] = array('onoff');
|
||||
$meta['showdate'] = array('multichoice', '_choices' => array('0', '1', '2'));
|
||||
$meta['showuser'] = array('multichoice', '_choices' => array('0', '1', '2'));
|
||||
$meta['showdesc'] = array('multichoice', '_choices' => array('0', '160', '500'));
|
||||
$meta['showcomments'] = array('onoff');
|
||||
$meta['showlinkbacks']= array('onoff');
|
||||
$meta['showtags'] = array('onoff');
|
||||
$meta['showfirsthl'] = array('onoff');
|
||||
$meta['showimage'] = array('onoff');
|
||||
$meta['showdiff'] = array('onoff');
|
||||
$meta['sort'] = array('onoff');
|
||||
$meta['rsort'] = array('onoff');
|
||||
|
||||
//Setup VIM: ex: et ts=2 :
|
Reference in New Issue
Block a user