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:
commit
9677ad4dd3
36 changed files with 3919 additions and 0 deletions
includes/t-items
32
includes/t-items/package.inc.php
Normal file
32
includes/t-items/package.inc.php
Normal file
|
@ -0,0 +1,32 @@
|
|||
<?php
|
||||
|
||||
$package[ 'requires' ][] = 'form';
|
||||
$package[ 'requires' ][] = 't-basics';
|
||||
$package[ 'requires' ][] = 't-data';
|
||||
|
||||
$package[ 'files' ][] = 'controllers';
|
||||
$package[ 'files' ][] = 'fields';
|
||||
$package[ 'files' ][] = 'page_controllers';
|
||||
$package[ 'files' ][] = 'pages';
|
||||
$package[ 'files' ][] = 'views';
|
||||
|
||||
$package[ 'extras' ][] = 'Item_NameField';
|
||||
$package[ 'extras' ][] = 'Item_LocationField';
|
||||
|
||||
$package[ 'ctrls' ][] = 'add_item';
|
||||
$package[ 'ctrls' ][] = 'add_item_form';
|
||||
$package[ 'ctrls' ][] = 'delete_item';
|
||||
$package[ 'ctrls' ][] = 'delete_item_form';
|
||||
$package[ 'ctrls' ][] = 'edit_item';
|
||||
$package[ 'ctrls' ][] = 'edit_item_form';
|
||||
$package[ 'ctrls' ][] = 'move_item';
|
||||
$package[ 'ctrls' ][] = 'move_item_form';
|
||||
$package[ 'ctrls' ][] = 'item_details';
|
||||
$package[ 'ctrls' ][] = 'item_tasks';
|
||||
$package[ 'ctrls' ][] = 'items_tree';
|
||||
$package[ 'ctrls' ][] = 'view_item';
|
||||
|
||||
$package[ 'views' ][] = 'item_details';
|
||||
$package[ 'views' ][] = 'items_tree';
|
||||
|
||||
$package[ 'pages' ][] = 'tasks_items';
|
Loading…
Add table
Add a link
Reference in a new issue