X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=initialize.php;h=5d721b8038f6538b56b41f30fd127e0d91221150;hb=a575a9147976a06263d8a7eae006d6ba3372446e;hp=29425c074e25e07df6a0de03ac8952075986c8cf;hpb=75eff172d58ac5b4f017434743f8f8d5d8fd1554;p=timetracker.git diff --git a/initialize.php b/initialize.php index 29425c07..5d721b80 100644 --- a/initialize.php +++ b/initialize.php @@ -74,7 +74,6 @@ $smarty = new Smarty; $smarty->use_sub_dirs = false; $smarty->template_dir = TEMPLATE_DIR; $smarty->compile_dir = TEMPLATE_DIR.'_c'; -$GLOBALS['SMARTY'] = &$smarty; // Note: these 3 settings below used to be in .htaccess file. Moved them here to eliminate "error 500" problems // with some shared hostings that do not have AllowOverride Options or AllowOverride All in their apache configurations. @@ -126,10 +125,12 @@ 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. - +// TODO: redesign of user rights and roles is currently ongoing. +// As we run our of bits for sure at some point, rights should be strings instead, +// for example: "data_entry". +// Also, we need rights editor page and team-customized roles. +// Move this stuff from here to ttUser class. +// // 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. @@ -197,7 +198,6 @@ if (!$lang) { // Load i18n file. $i18n->load($lang); -$GLOBALS['I18N'] = &$i18n; // Assign things for smarty to use in template files. $smarty->assign('i18n', $i18n->keys);