2 // +----------------------------------------------------------------------+
3 // | Anuko Time Tracker
4 // +----------------------------------------------------------------------+
5 // | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
6 // +----------------------------------------------------------------------+
7 // | LIBERAL FREEWARE LICENSE: This source code document may be used
8 // | by anyone for any purpose, and freely redistributed alone or in
9 // | combination with other software, provided that the license is obeyed.
11 // | There are only two ways to violate the license:
13 // | 1. To redistribute this code in source form, with the copyright
14 // | notice or license removed or altered. (Distributing in compiled
15 // | forms without embedded copyright notices is permitted).
17 // | 2. To redistribute modified versions of this code in *any* form
18 // | that bears insufficient indications that the modifications are
19 // | not the work of the original author(s).
21 // | This license applies to this document only, not any other software
22 // | that it may be combined with.
24 // +----------------------------------------------------------------------+
26 // | https://www.anuko.com/time_tracker/credits.htm
27 // +----------------------------------------------------------------------+
29 require_once('initialize.php');
31 import('ttUserHelper');
32 import('ttTimeHelper');
33 import('DateAndTime');
36 if (!ttAccessCheck(right_data_entry)) {
37 header('Location: access_denied.php');
41 // Use Custom Fields plugin if we have one.
42 // if (file_exists("plugins/CustomFields.class.php")) {
43 // require_once("plugins/CustomFields.class.php");
44 // $custom_fields = new CustomFields($user->team_id);
47 $cl_id = $request->getParameter('id');
48 $time_rec = ttTimeHelper::getRecord($cl_id, $user->getActiveUser());
50 // Prohibit deleting invoiced records.
51 if ($time_rec['invoice_id']) die($i18n->getKey('error.sys'));
53 // Escape comment for presentation.
54 $time_rec['comment'] = htmlspecialchars($time_rec['comment']);
56 if ($request->getMethod() == 'POST') {
57 if ($request->getParameter('delete_button')) { // Delete button pressed.
59 // Determine if it's okay to delete the record.
60 $item_date = new DateAndTime(DB_DATEFORMAT, $time_rec['date']);
61 // Determine lock date.
62 $lock_interval = $user->lock_interval;
64 if ($lock_interval > 0) {
65 $lockdate = new DateAndTime();
66 $lockdate->decDay($lock_interval);
68 // Determine if the record is uncompleted.
69 $uncompleted = ($time_rec['duration'] == '0:00');
71 if($lockdate && $item_date->before($lockdate) && !$uncompleted) {
72 $errors->add($i18n->getKey('error.period_locked'));
78 $result = ttTimeHelper::delete($cl_id, $user->getActiveUser());
81 header('Location: time.php');
84 $errors->add($i18n->getKey('error.db'));
88 if ($request->getParameter('cancel_button')) { // Cancel button pressed.
89 header('Location: time.php');
94 $form = new Form('timeRecordForm');
95 $form->addInput(array('type'=>'hidden','name'=>'id','value'=>$cl_id));
96 $form->addInput(array('type'=>'submit','name'=>'delete_button','value'=>$i18n->getKey('label.delete')));
97 $form->addInput(array('type'=>'submit','name'=>'cancel_button','value'=>$i18n->getKey('button.cancel')));
99 $smarty->assign('time_rec', $time_rec);
100 $smarty->assign('forms', array($form->getName() => $form->toArray()));
101 $smarty->assign('title', $i18n->getKey('title.delete_time_record'));
102 $smarty->assign('content_page_name', 'time_delete.tpl');
103 $smarty->display('index.tpl');