Initial import of tasks application

This initial import is a heavily modified version of the code I had
here, as Arse was modified for other purposes in the meantime and the
application no longer worked with it.

In addition:
 * I did not import the user management part yet,
 * task dependencies are supported in-base, but there is no interface
for that yet.
This commit is contained in:
Emmanuel BENOîT 2012-02-05 18:37:25 +01:00
commit 9677ad4dd3
36 changed files with 3919 additions and 0 deletions
includes/t-tasks

View file

@ -0,0 +1,35 @@
<?php
$package[ 'requires' ][] = 'form';
$package[ 'requires' ][] = 't-data';
$package[ 'requires' ][] = 't-basics';
$package[ 'files' ][] = 'controllers';
$package[ 'files' ][] = 'page_controllers';
$package[ 'files' ][] = 'pages';
$package[ 'files' ][] = 'views';
$package[ 'ctrls' ][] = 'all_tasks';
$package[ 'ctrls' ][] = 'add_task_form';
$package[ 'ctrls' ][] = 'add_task';
$package[ 'ctrls' ][] = 'add_task_note_form';
$package[ 'ctrls' ][] = 'add_task_note';
$package[ 'ctrls' ][] = 'delete_note_form';
$package[ 'ctrls' ][] = 'delete_note';
$package[ 'ctrls' ][] = 'delete_task_form';
$package[ 'ctrls' ][] = 'delete_task';
$package[ 'ctrls' ][] = 'edit_note_form';
$package[ 'ctrls' ][] = 'edit_note';
$package[ 'ctrls' ][] = 'edit_task_form';
$package[ 'ctrls' ][] = 'edit_task';
$package[ 'ctrls' ][] = 'task_details';
$package[ 'ctrls' ][] = 'task_notes';
$package[ 'ctrls' ][] = 'toggle_task';
$package[ 'ctrls' ][] = 'view_task';
$package[ 'views' ][] = 'all_tasks';
$package[ 'views' ][] = 'tasks';
$package[ 'views' ][] = 'task_details';
$package[ 'views' ][] = 'task_note';
$package[ 'pages' ][] = 'tasks_tasks';