A bit more progress on refactoring access checks.
[timetracker.git] / expense_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('DateAndTime');
32 import('ttExpenseHelper');
33
34 // Access checks.
35 if (!(ttAccessAllowed('track_own_expenses') || ttAccessAllowed('track_expenses'))) {
36   header('Location: access_denied.php');
37   exit();
38 }
39 if (!$user->isPluginEnabled('ex')) {
40   header('Location: feature_disabled.php');
41   exit();
42 }
43
44 $cl_id = $request->getParameter('id');
45 $expense_item = ttExpenseHelper::getItem($cl_id, $user->getActiveUser());
46
47 // Prohibit deleting invoiced records.
48 if ($expense_item['invoice_id']) die($i18n->get('error.sys'));
49
50 if ($request->isPost()) {
51   if ($request->getParameter('delete_button')) { // Delete button pressed.
52
53     // Determine if it is okay to delete the record.
54     $item_date = new DateAndTime(DB_DATEFORMAT, $expense_item['date']);
55     if ($user->isDateLocked($item_date))
56       $err->add($i18n->get('error.range_locked'));
57
58     if ($err->no()) {
59       // Mark the record as deleted.
60       if (ttExpenseHelper::markDeleted($cl_id, $user->getActiveUser())) {
61         header('Location: expenses.php');
62         exit();
63       } else
64         $err->add($i18n->get('error.db'));
65     }
66   }
67   if ($request->getParameter('cancel_button')) { // Cancel button pressed.
68     header('Location: expenses.php');
69     exit();
70   }
71 } // isPost
72
73 $form = new Form('expenseItemForm');
74 $form->addInput(array('type'=>'hidden','name'=>'id','value'=>$cl_id));
75 $form->addInput(array('type'=>'submit','name'=>'delete_button','value'=>$i18n->get('label.delete')));
76 $form->addInput(array('type'=>'submit','name'=>'cancel_button','value'=>$i18n->get('button.cancel')));
77
78 $smarty->assign('expense_item', $expense_item);
79 $smarty->assign('forms', array($form->getName() => $form->toArray()));
80 $smarty->assign('title', $i18n->get('title.delete_expense'));
81 $smarty->assign('content_page_name', 'expense_delete.tpl');
82 $smarty->display('index.tpl');