add contents

This commit is contained in:
Trevor Batley
2025-10-09 15:04:29 +11:00
parent 170362eec1
commit bce7dd054a
2537 changed files with 301282 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?php
/**
* Options for the ToDo Plugin
*/
$conf['AllowLinks'] = 0; // Should the Todo's also Link to Files
$conf['ActionNamespace'] = ''; //What should the default namespace for actions be
$conf['Strikethrough'] = 1; // Should text have strikethrough when checked
$conf['CheckboxText'] = 1; //Should we allow action text to check the checkbox
$conf['Checkbox'] = 1; // Should the Checkbox be rendered in list view
$conf['Header'] = 'id'; // How should the header of list be rendered ID/FIRSTHEADER
$conf['Username'] = 'user'; //How should the name of the assigned user be rendered USER/REALNAME/NONE
$conf['ShowdateTag'] = 1; // Should the Start/Due-Date be rendered in a tag
$conf['ShowdateList'] = 0; // Should the Start/Due-Date be rendered in list view
//Setup VIM: ex: et ts=2 enc=utf-8 :

View File

@@ -0,0 +1,19 @@
<?php
/**
* Metadata for configuration manager plugin
* Additions for the ToDo Plugin
*
* @author Babbage <babbage@digitalbrink.com>
*/
$meta['AllowLinks'] = array('onoff');
$meta['ActionNamespace'] = array('string');
$meta['Strikethrough'] = array('onoff');
$meta['CheckboxText'] = array('onoff');
$meta['Checkbox'] = array('onoff');
$meta['Header'] = array('multichoice', '_choices' => array('id','firstheader','none'));
$meta['Username'] = array('multichoice', '_choices' => array('user','real','none'));
$meta['ShowdateTag'] = array('onoff');
$meta['ShowdateList'] = array('onoff');
//Setup VIM: ex: et ts=2 enc=utf-8 :