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