forked from Ben0it-T/timetracker
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtime.php
More file actions
552 lines (506 loc) · 22.4 KB
/
time.php
File metadata and controls
552 lines (506 loc) · 22.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
<?php
/* Copyright (c) Anuko International Ltd. https://www.anuko.com
License: See license.txt */
require_once('initialize.php');
import('form.Form');
import('ttConfigHelper');
import('ttUserHelper');
import('ttGroupHelper');
import('ttClientHelper');
import('ttTimeHelper');
import('ttFileHelper');
import('ttDate');
// Access checks.
if (!(ttAccessAllowed('track_own_time') || ttAccessAllowed('track_time'))) {
header('Location: access_denied.php');
exit();
}
if ($user->behalf_id && (!$user->can('track_time') || !$user->checkBehalfId())) {
header('Location: access_denied.php'); // Trying on behalf, but no right or wrong user.
exit();
}
if (!$user->behalf_id && !$user->can('track_own_time') && !$user->adjustBehalfId()) {
header('Location: access_denied.php'); // Trying as self, but no right for self, and noone to work on behalf.
exit();
}
$userChanged = false;
if ($request->isPost()) {
$userChanged = (bool)$request->getParameter('user_changed'); // Reused in multiple places below.
if ($userChanged && !($user->can('track_time') && $user->isUserValid((int)$request->getParameter('user')))) {
header('Location: access_denied.php'); // User changed, but no right or wrong user id.
exit();
}
}
// If we are passed in a date, make sure it is in correct format.
$date = $request->getParameter('date');
if ($date && !ttValidDbDateFormatDate($date)) {
header('Location: access_denied.php');
exit();
}
if ($request->isPost()) {
// Validate that browser_today parameter is in correct format.
$browser_today = $request->getParameter('browser_today');
if ($browser_today && !ttValidDbDateFormatDate($browser_today)) {
header('Location: access_denied.php');
exit();
}
}
// Additional checks for hidden controls used for completion of uncompleted records.
// browser_date, browser_time, record_id.
if ($request->isPost() && $request->getParameter('btn_stop')) {
$recordId = (int) $request->getParameter('record_id');
$time_rec = ttTimeHelper::getRecord($recordId);
if (!$time_rec) {
// We are passed a bogus record id.
header('Location: access_denied.php');
exit();
}
// Validate that browser_date parameter is in correct format.
$browser_date = $request->getParameter('browser_date');
if ($browser_date && !ttValidDbDateFormatDate($browser_date)) {
header('Location: access_denied.php');
exit();
}
// Validate that browser_time parameter is in correct format.
$browser_time = $request->getParameter('browser_time');
if ($browser_time && !ttValidTime($browser_time)) {
header('Location: access_denied.php');
exit();
}
}
// End of access checks.
// Determine user for whom we display this page.
if ($request->isPost() && $userChanged) {
$user_id = (int)$request->getParameter('user');
$user->setOnBehalfUser($user_id);
} else {
$user_id = $user->getUser();
}
$group_id = $user->getGroup();
$config = new ttConfigHelper($user->getConfig());
$showClient = $user->isPluginEnabled('cl');
$showBillable = $user->isPluginEnabled('iv');
$trackingMode = $user->getTrackingMode();
$showProject = MODE_PROJECTS == $trackingMode || MODE_PROJECTS_AND_TASKS == $trackingMode;
$showTask = MODE_PROJECTS_AND_TASKS == $trackingMode;
$taskRequired = false;
if ($showTask) $taskRequired = $config->getDefinedValue('task_required');
$recordType = $user->getRecordType();
$showStart = TYPE_START_FINISH == $recordType || TYPE_ALL == $recordType;
$showDuration = TYPE_DURATION == $recordType || TYPE_ALL == $recordType;
$showFiles = $user->isPluginEnabled('at');
$showRecordCustomFields = $user->isOptionEnabled('record_custom_fields');
$oneUncompleted = $config->getDefinedValue('one_uncompleted');
// Initialize and store date in session.
$cl_date = $request->getParameter('date', @$_SESSION['date']);
$selected_date = new ttDate($cl_date);
if(!$cl_date)
$cl_date = $selected_date->toString();
$_SESSION['date'] = $cl_date;
// Use custom fields plugin if it is enabled.
if ($user->isPluginEnabled('cf')) {
require_once(APP_PLUGINS_DIR . '/CustomFields.class.php');
$custom_fields = new CustomFields();
$smarty->assign('custom_fields', $custom_fields);
}
$showNoteColumn = !$config->getDefinedValue('time_note_on_separate_row');
$showNoteRow = $config->getDefinedValue('time_note_on_separate_row');
if ($showNoteRow) {
// Determine column span for note field.
$colspan = 0;
if ($showClient) $colspan++;
if ($showRecordCustomFields && isset($custom_fields) && $custom_fields->timeFields) {
foreach ($custom_fields->timeFields as $timeField) {
$colspan++;
}
}
if ($showProject) $colspan++;
if ($showTask) $colspan++;
if ($showStart) $colspan += 2; // Another for show finish.
$colspan++; // There is always a duration.
if ($showFiles) $colspan++;
$colspan++; // There is always an edit column.
// $colspan++; // There is always a delete column.
// $colspan--; // Remove one column for label.
$smarty->assign('colspan', $colspan);
}
if ($user->isPluginEnabled('mq')){
require_once(APP_PLUGINS_DIR . '/MonthlyQuota.class.php');
$quota = new MonthlyQuota();
$month_quota_minutes = $quota->getUserQuota($selected_date->year, $selected_date->month);
$quota_minutes_from_1st = $quota->getUserQuotaFrom1st($selected_date);
$month_total = ttTimeHelper::getTimeForMonth($selected_date);
$month_total_minutes = ttTimeHelper::toMinutes($month_total);
$balance_left = $quota_minutes_from_1st - $month_total_minutes;
$minutes_left = $month_quota_minutes - $month_total_minutes;
$smarty->assign('month_total', $month_total);
$smarty->assign('month_quota', ttTimeHelper::toAbsDuration($month_quota_minutes));
$smarty->assign('over_balance', $balance_left < 0);
$smarty->assign('balance_remaining', ttTimeHelper::toAbsDuration($balance_left));
$smarty->assign('over_quota', $minutes_left < 0);
$smarty->assign('quota_remaining', ttTimeHelper::toAbsDuration($minutes_left));
}
// Initialize variables.
$cl_start = is_null($request->getParameter('start')) ? '' : trim($request->getParameter('start'));
$cl_finish = is_null($request->getParameter('finish')) ? '' : trim($request->getParameter('finish'));
$cl_duration = is_null($request->getParameter('duration')) ? null : trim($request->getParameter('duration'));
$cl_note = is_null($request->getParameter('note')) ? '' : trim($request->getParameter('note'));
$cl_billable = 1;
if ($showBillable) {
if ($request->isPost()) {
$cl_billable = $request->getParameter('billable');
$_SESSION['billable'] = (int) $cl_billable;
} else
if (isset($_SESSION['billable']))
$cl_billable = $_SESSION['billable'];
}
$cl_client = $request->getParameter('client', ($request->isPost() ? '' : @$_SESSION['client']));
$_SESSION['client'] = $cl_client;
$cl_project = $request->getParameter('project', ($request->isPost() ? '' : @$_SESSION['project']));
$_SESSION['project'] = $cl_project;
$cl_task = $request->getParameter('task', ($request->isPost() ? '' : @$_SESSION['task']));
$_SESSION['task'] = $cl_task;
// Handle time custom fields.
$timeCustomFields = array();
if (isset($custom_fields) && $custom_fields->timeFields) {
foreach ($custom_fields->timeFields as $timeField) {
$control_name = 'time_field_'.$timeField['id'];
$cl_control_name = $request->getParameter($control_name, ($request->isPost() ? '' : @$_SESSION[$control_name]));
$cl_control_name = is_null($cl_control_name) ? '' : trim($cl_control_name);
$_SESSION[$control_name] = $cl_control_name;
$timeCustomFields[$timeField['id']] = array(
'field_id' => $timeField['id'],
'control_name' => $control_name,
'label' => $timeField['label'],
'type' => $timeField['type'],
'required' => $timeField['required'],
'value' => $cl_control_name
);
}
}
// Elements of timeRecordForm.
$form = new Form('timeRecordForm');
$largeScreenCalendarRowSpan = 1; // Number of rows calendar spans on large screens.
// Dropdown for user and a hidden control to indicate user change.
if ($user->can('track_time')) {
$rank = $user->getMaxRankForGroup($group_id);
if ($user->can('track_own_time'))
$options = array('status'=>ACTIVE,'max_rank'=>$rank,'include_self'=>true,'self_first'=>true);
else
$options = array('status'=>ACTIVE,'max_rank'=>$rank);
$user_list = $user->getUsers($options);
if (count($user_list) >= 1) {
$form->addInput(array('type'=>'combobox',
'onchange'=>'document.timeRecordForm.user_changed.value=1;document.timeRecordForm.submit();',
'name'=>'user',
'value'=>$user_id,
'data'=>$user_list,
'datakeys'=>array('id','name')));
$form->addInput(array('type'=>'hidden','name'=>'user_changed'));
$largeScreenCalendarRowSpan += 2;
$smarty->assign('user_dropdown', 1);
}
}
// Dropdown for clients in MODE_TIME. Use all active clients.
// Note: for other tracking modes the control is added further below.
if (MODE_TIME == $trackingMode && $showClient) {
$active_clients = ttGroupHelper::getActiveClients(true);
$form->addInput(array('type'=>'combobox',
'onchange'=>'fillProjectDropdown(this.value);',
'name'=>'client',
'value'=>$cl_client,
'data'=>$active_clients,
'datakeys'=>array('id', 'name'),
'empty'=>array(''=>$i18n->get('dropdown.select'))));
$largeScreenCalendarRowSpan += 2;
// Note: in other modes the client list is filtered to relevant clients only. See below.
}
// Billable checkbox.
if ($showBillable) {
$form->addInput(array('type'=>'checkbox','name'=>'billable','value'=>$cl_billable));
$largeScreenCalendarRowSpan += 2;
}
// If we have time custom fields - add controls for them.
if (isset($custom_fields) && $custom_fields->timeFields) {
foreach ($custom_fields->timeFields as $timeField) {
$field_name = 'time_field_'.$timeField['id'];
if ($timeField['type'] == CustomFields::TYPE_TEXT) {
$form->addInput(array('type'=>'text','name'=>$field_name,'value'=>$timeCustomFields[$timeField['id']]['value']));
} elseif ($timeField['type'] == CustomFields::TYPE_DROPDOWN) {
$form->addInput(array('type'=>'combobox','name'=>$field_name,
'data'=>CustomFields::getOptions($timeField['id']),
'value'=>$timeCustomFields[$timeField['id']]['value'],
'empty'=>array(''=>$i18n->get('dropdown.select'))));
}
$largeScreenCalendarRowSpan += 2;
}
}
// If we show project dropdown, add controls for project and client.
$project_list = $client_list = array();
if ($showProject) {
// Dropdown for projects assigned to user.
$options['include_templates'] = $user->isPluginEnabled('tp') && $config->getDefinedValue('bind_templates_with_projects');
$project_list = $user->getAssignedProjects($options);
$form->addInput(array('type'=>'combobox',
'onchange'=>'fillTaskDropdown(this.value);fillTemplateDropdown(this.value);prepopulateNote();',
'name'=>'project',
'value'=>$cl_project,
'data'=>$project_list,
'datakeys'=>array('id','name'),
'empty'=>array(''=>$i18n->get('dropdown.select'))));
$largeScreenCalendarRowSpan += 2;
// Client dropdown.
if ($showClient) {
$active_clients = ttGroupHelper::getActiveClients(true);
// We need an array of assigned project ids to do some trimming.
foreach($project_list as $project)
$projects_assigned_to_user[] = $project['id'];
// Build a client list out of active clients. Use only clients that are relevant to user.
// Also trim their associated project list to only assigned projects (to user).
foreach($active_clients as $client) {
$projects_assigned_to_client = is_null($client['projects']) ? array() : explode(',', $client['projects']);
if (is_array($projects_assigned_to_client) && is_array($projects_assigned_to_user))
$intersection = array_intersect($projects_assigned_to_client, $projects_assigned_to_user);
if ($intersection) {
$client['projects'] = implode(',', $intersection);
$client_list[] = $client;
}
}
$form->addInput(array('type'=>'combobox',
'onchange'=>'fillProjectDropdown(this.value);',
'name'=>'client',
'value'=>$cl_client,
'data'=>$client_list,
'datakeys'=>array('id', 'name'),
'empty'=>array(''=>$i18n->get('dropdown.select'))));
$largeScreenCalendarRowSpan += 2;
}
}
// Task dropdown.
$task_list = array();
if ($showTask) {
$task_list = ttGroupHelper::getActiveTasks();
$form->addInput(array('type'=>'combobox',
'name'=>'task',
'value'=>$cl_task,
'data'=>$task_list,
'datakeys'=>array('id','name'),
'empty'=>array(''=>$i18n->get('dropdown.select'))));
$largeScreenCalendarRowSpan += 2;
}
// Start and finish controls.
if ($showStart) {
$form->addInput(array('type'=>'text','name'=>'start','value'=>$cl_start,'onchange'=>"formDisable('start');"));
$form->addInput(array('type'=>'text','name'=>'finish','value'=>$cl_finish,'onchange'=>"formDisable('finish');"));
if ($user->punch_mode && !$user->canOverridePunchMode()) {
// Make the start and finish fields read-only.
$form->getElement('start')->setEnabled(false);
$form->getElement('finish')->setEnabled(false);
}
$largeScreenCalendarRowSpan += 4;
}
// Duration control.
if ($showDuration) {
$placeholder = $user->getDecimalMark() == ',' ? str_replace('.', ',', $i18n->get('form.time.duration_placeholder')) : $i18n->get('form.time.duration_placeholder');
$form->addInput(array('type'=>'text','name'=>'duration','placeholder'=>$placeholder,'value'=>$cl_duration,'onchange'=>"formDisable('duration');"));
$largeScreenCalendarRowSpan += 2;
}
// File upload control.
if ($showFiles) {
$form->addInput(array('type'=>'upload','name'=>'newfile','value'=>$i18n->get('button.submit')));
$largeScreenCalendarRowSpan += 2;
}
// If we have templates, add a dropdown to select one.
if ($user->isPluginEnabled('tp')){
$template_list = ttGroupHelper::getActiveTemplates();
if (count($template_list) >= 1) {
$form->addInput(array('type'=>'combobox',
'onchange'=>'fillNote(this.value);',
'name'=>'template',
'data'=>$template_list,
'datakeys'=>array('id','name'),
'empty'=>array(''=>$i18n->get('dropdown.select'))));
$smarty->assign('template_dropdown', 1);
$smarty->assign('bind_templates_with_projects', $config->getDefinedValue('bind_templates_with_projects'));
$smarty->assign('prepopulate_note', $config->getDefinedValue('prepopulate_note'));
$smarty->assign('template_list', $template_list);
$largeScreenCalendarRowSpan += 2;
}
}
// Note control.
$form->addInput(array('type'=>'textarea','name'=>'note','value'=>$cl_note));
// Calendar.
$form->addInput(array('type'=>'calendar','name'=>'date','value'=>$cl_date)); // calendar
// A hidden control for today's date from user's browser.
$form->addInput(array('type'=>'hidden','name'=>'browser_today','value'=>'')); // User current date, which gets filled in on btn_submit click.
// Submit button.
$form->addInput(array('type'=>'submit','name'=>'btn_submit','onclick'=>'browser_today.value=get_date()','value'=>$i18n->get('button.submit')));
if ($request->isPost()) {
if ($request->getParameter('btn_submit')) {
// Submit button clicked.
// Use the "limit" plugin if we have one. Ignore include errors.
// The "limit" plugin is not required for normal operation of Time Tracker.
@include(APP_PLUGINS_DIR . '/limit/access_check.php');
// Validate user input.
if ($showClient && $user->isOptionEnabled('client_required') && !$cl_client)
$err->add($i18n->get('error.client'));
// Validate input in time custom fields.
if (isset($custom_fields) && $custom_fields->timeFields) {
foreach ($timeCustomFields as $timeField) {
// Validation is the same for text and dropdown fields.
if (!ttValidString($timeField['value'], !$timeField['required'])) $err->add($i18n->get('error.field'), htmlspecialchars($timeField['label']));
}
}
if ($showProject) {
if (!$cl_project) $err->add($i18n->get('error.project'));
}
if ($showTask && $taskRequired) {
if (!$cl_task) $err->add($i18n->get('error.task'));
}
if ($cl_duration == null) {
if ($cl_start || $cl_finish) {
if (!ttTimeHelper::isValidTime($cl_start))
$err->add($i18n->get('error.field'), $i18n->get('label.start'));
if ($cl_finish) {
if (!ttTimeHelper::isValidTime($cl_finish))
$err->add($i18n->get('error.field'), $i18n->get('label.finish'));
if (!ttTimeHelper::isValidInterval($cl_start, $cl_finish))
$err->add($i18n->get('error.interval'), $i18n->get('label.finish'), $i18n->get('label.start'));
}
} else {
if ($showStart) {
$err->add($i18n->get('error.empty'), $i18n->get('label.start'));
$err->add($i18n->get('error.empty'), $i18n->get('label.finish'));
}
if ($showDuration)
$err->add($i18n->get('error.empty'), $i18n->get('label.duration'));
}
} else {
if (false === ttTimeHelper::postedDurationToMinutes($cl_duration))
$err->add($i18n->get('error.field'), $i18n->get('label.duration'));
}
echo "<pre>";
print_r($cl_start);
echo "<br>";
print_r($cl_finish);
echo "<br>";
print_r($cl_duration);
echo "</pre>";
if (!ttValidString($cl_note, true)) $err->add($i18n->get('error.field'), $i18n->get('label.note'));
if ($user->isPluginEnabled('tp') && !ttValidTemplateText($cl_note)) {
$err->add($i18n->get('error.field'), $i18n->get('label.note'));
}
// Finished validating user input.
// Prohibit creating entries in future.
if (!$user->isOptionEnabled('future_entries')) {
$browser_today = new ttDate($request->getParameter('browser_today', null));
$server_tomorrow = new ttDate();
$server_tomorrow->incrementDay();
if ($selected_date->after($browser_today) || $selected_date->after($server_tomorrow))
$err->add($i18n->get('error.future_date'));
}
// Prohibit creating entries in locked range.
if ($user->isDateLocked($selected_date))
$err->add($i18n->get('error.range_locked'));
// Prohibit creating another uncompleted record.
if ($err->no() && $oneUncompleted) {
if (($not_completed_rec = ttTimeHelper::getUncompleted($user_id)) && (($cl_finish == '') && ($cl_duration == '')))
$err->add($i18n->get('error.uncompleted_exists')." <a href = 'time_edit.php?id=".$not_completed_rec['id']."'>".$i18n->get('error.goto_uncompleted')."</a>");
}
// Prohibit creating an overlapping record.
if ($err->no()) {
if (ttTimeHelper::overlaps($user_id, $cl_date, $cl_start, $cl_finish))
$err->add($i18n->get('error.overlap'));
}
// Insert record.
if ($err->no()) {
$id = ttTimeHelper::insert(array(
'date' => $cl_date,
'client' => $cl_client,
'project' => $cl_project,
'task' => $cl_task,
'start' => $cl_start,
'finish' => $cl_finish,
'duration' => $cl_duration,
'note' => $cl_note,
'billable' => $cl_billable));
// Insert time custom fields if we have them.
$result = true;
if ($id && isset($custom_fields) && $custom_fields->timeFields) {
$result = $custom_fields->insertTimeFields($id, $timeCustomFields);
}
// Put a new file in storage if we have it.
if ($id && $showFiles && $_FILES['newfile']['name']) {
$fileHelper = new ttFileHelper($err);
$fields = array('entity_type'=>'time',
'entity_id' => $id,
'file_name' => $_FILES['newfile']['name']);
$fileHelper->putFile($fields);
}
if ($id && $result && $err->no()) {
header('Location: time.php');
exit();
}
$err->add($i18n->get('error.db'));
}
} elseif ($request->getParameter('btn_stop')) {
// Stop button pressed to finish an uncompleted record.
$record_id = $request->getParameter('record_id');
$record = ttTimeHelper::getRecord($record_id);
$browser_date = $request->getParameter('browser_date');
$browser_time = $request->getParameter('browser_time');
// Can we complete this record?
if ($record['date'] == $browser_date // closing today's record
&& ttTimeHelper::isValidInterval($record['start'], $browser_time) // finish time is greater than start time
&& !ttTimeHelper::overlaps($user_id, $browser_date, $record['start'], $browser_time)) { // no overlap
$res = ttTimeHelper::update(array(
'id'=>$record['id'],
'date'=>$record['date'],
'client'=>$record['client_id'],
'project'=>$record['project_id'],
'task'=>$record['task_id'],
'start'=>$record['start'],
'finish'=>$browser_time,
'note'=>$record['comment'],
'billable'=>$record['billable'],
'paid' => $record['paid']));
if (!$res)
$err->add($i18n->get('error.db'));
} else {
// Cannot complete, redirect for manual edit.
header('Location: time_edit.php?id='.$record_id);
exit();
}
}
} // isPost
$week_total = ttTimeHelper::getTimeForWeek($selected_date);
$timeRecords = ttTimeHelper::getRecords($cl_date, $showFiles);
$showNavigation = ($user->isPluginEnabled('wv') && !$user->isOptionEnabled('week_menu')) ||
($user->isPluginEnabled('pu') && !$user->isOptionEnabled('puncher_menu'));
$smarty->assign('large_screen_calendar_row_span', $largeScreenCalendarRowSpan);
$smarty->assign('selected_date', $selected_date);
$smarty->assign('week_total', $week_total);
$smarty->assign('day_total', ttTimeHelper::getTimeForDay($cl_date));
$smarty->assign('time_records', $timeRecords);
$smarty->assign('show_record_custom_fields', $showRecordCustomFields);
$smarty->assign('show_navigation', $showNavigation);
$smarty->assign('show_client', $showClient);
$smarty->assign('show_billable', $showBillable);
$smarty->assign('show_project', $showProject);
$smarty->assign('show_task', $showTask);
$smarty->assign('task_required', $taskRequired);
$smarty->assign('show_start', $showStart);
$smarty->assign('show_duration', $showDuration);
$smarty->assign('show_note_column', $showNoteColumn);
$smarty->assign('show_note_row', $showNoteRow);
$smarty->assign('show_files', $showFiles);
$smarty->assign('client_list', $client_list);
$smarty->assign('project_list', $project_list);
$smarty->assign('task_list', $task_list);
$smarty->assign('one_uncompleted', $oneUncompleted);
$smarty->assign('forms', array($form->getName()=>$form->toArray()));
$smarty->assign('onload', 'onload="fillDropdowns();prepopulateNote();adjustTodayLinks()"');
$smarty->assign('timestring', $selected_date->toString($user->getDateFormat()));
$smarty->assign('title', $i18n->get('title.time'));
$smarty->assign('content_page_name', 'time.tpl');
$smarty->display('index.tpl');