Removed commented code
[timetracker.git] / time_delete.php
1 <?php
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.
10 // |
11 // | There are only two ways to violate the license:
12 // |
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).
16 // |
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).
20 // |
21 // | This license applies to this document only, not any other software
22 // | that it may be combined with.
23 // |
24 // +----------------------------------------------------------------------+
25 // | Contributors:
26 // | https://www.anuko.com/time_tracker/credits.htm
27 // +----------------------------------------------------------------------+
28
29 require_once('initialize.php');
30 import('form.Form');
31 import('ttUserHelper');
32 import('ttTimeHelper');
33 import('DateAndTime');
34
35 // Access check.
36 if (!ttAccessCheck(right_data_entry)) {
37   header('Location: access_denied.php');
38   exit();
39 }
40
41 $cl_id = $request->getParameter('id');
42 $time_rec = ttTimeHelper::getRecord($cl_id, $user->getActiveUser());
43
44 // Prohibit deleting invoiced records.
45 if ($time_rec['invoice_id']) die($i18n->getKey('error.sys'));
46
47 // Escape comment for presentation.
48 $time_rec['comment'] = htmlspecialchars($time_rec['comment']);
49
50 if ($request->isPost()) {
51   if ($request->getParameter('delete_button')) { // Delete button pressed.
52
53     // Determine if it's okay to delete the record.
54     $item_date = new DateAndTime(DB_DATEFORMAT, $time_rec['date']);
55     // Determine lock date.
56     $lock_interval = $user->lock_interval;
57     $lockdate = 0;
58     if ($lock_interval > 0) {
59       $lockdate = new DateAndTime();
60       $lockdate->decDay($lock_interval);
61     }
62     // Determine if the record is uncompleted.
63     $uncompleted = ($time_rec['duration'] == '0:00');
64
65     if($lockdate && $item_date->before($lockdate) && !$uncompleted) {
66       $err->add($i18n->getKey('error.period_locked'));
67     }
68
69     if ($err->no()) {
70
71       // Delete the record.
72       $result = ttTimeHelper::delete($cl_id, $user->getActiveUser());
73
74       if ($result) {
75         header('Location: time.php');
76         exit();
77       } else {
78         $err->add($i18n->getKey('error.db'));
79       }
80     }
81   }
82   if ($request->getParameter('cancel_button')) { // Cancel button pressed.
83     header('Location: time.php');
84     exit();
85   }
86 } // isPost
87
88 $form = new Form('timeRecordForm');
89 $form->addInput(array('type'=>'hidden','name'=>'id','value'=>$cl_id));
90 $form->addInput(array('type'=>'submit','name'=>'delete_button','value'=>$i18n->getKey('label.delete')));
91 $form->addInput(array('type'=>'submit','name'=>'cancel_button','value'=>$i18n->getKey('button.cancel')));
92
93 $smarty->assign('time_rec', $time_rec);
94 $smarty->assign('forms', array($form->getName() => $form->toArray()));
95 $smarty->assign('title', $i18n->getKey('title.delete_time_record'));
96 $smarty->assign('content_page_name', 'time_delete.tpl');
97 $smarty->display('index.tpl');