X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=initialize.php;h=1a508e94306cf5e76a78cead318e9f818c9a0899;hb=cd5e077ecb497431decde4835138b877d63b261c;hp=2cb0f5be3de69bb60b6e3a4ee3feb9d1a9f965ec;hpb=9e82b53fc5d8cb1e54b5fde774fa68a916f28b4c;p=timetracker.git diff --git a/initialize.php b/initialize.php index 2cb0f5be..1a508e94 100644 --- a/initialize.php +++ b/initialize.php @@ -120,6 +120,10 @@ define('TYPE_ALL', 0); // Time record can be specified with either duration or s define('TYPE_START_FINISH', 1); // Time record has start and finish times. define('TYPE_DURATION', 2); // Time record has only duration, no start and finish times. +// Definitions for uncompleted time entry indicators. +define('UNCOMPLETED_INDICATORS_NONE', 0); // Do not show indicators. +define('UNCOMPLETED_INDICATORS', 1); // Show indicators. + // User access rights - bits that collectively define an access mask to the system (a role). // We'll have some bits here (1,2, etc...) reserved for future use. define('right_data_entry', 4); // Right to enter work hours and expenses. @@ -152,8 +156,8 @@ import('html.HttpRequest'); $request = new ttHttpRequest(); import('form.ActionErrors'); -$err = new ActionErrors(); -$messages = new ActionErrors(); +$err = new ActionErrors(); // Error messages for user. +$msg = new ActionErrors(); // Notification messages (not errrors) for user. // Create an instance of ttUser class. This gets us most of user details. import('ttUser'); @@ -193,8 +197,8 @@ $GLOBALS['USER'] = &$user; // Assign things for smarty to use in template files. $smarty->assign('i18n', $i18n->keys); -$smarty->assign('errors', $err); -$smarty->assign('messages', $messages); +$smarty->assign('err', $err); +$smarty->assign('msg', $msg); // TODO: move this code out of here to the files that use it.