posaune
[timetracker.git] / timesheet_edit.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('ttTimesheetHelper');
32
33 // Access checks.
34 if (!(ttAccessAllowed('track_own_time') || ttAccessAllowed('track_time'))) {
35   header('Location: access_denied.php');
36   exit();
37 }
38 if (!$user->isPluginEnabled('ts')) {
39   header('Location: feature_disabled.php');
40   exit();
41 }
42 $cl_timesheet_id = (int)$request->getParameter('id');
43 $timesheet = ttTimesheetHelper::getTimesheet($cl_timesheet_id);
44 if (!$timesheet) {
45   header('Location: access_denied.php');
46   exit();
47 }
48 // End of access checks.
49
50 if ($request->isPost()) {
51   $cl_name = trim($request->getParameter('timesheet_name'));
52   $cl_comment = trim($request->getParameter('comment'));
53   $cl_status = $request->getParameter('status');
54 } else {
55   $cl_name = $timesheet['name'];
56   $cl_comment = $timesheet['comment'];
57   $cl_status = $timesheet['status'];
58 }
59
60 // Can we delete this timesheet?
61 $canDelete = $timesheet['approve_status'] != 1
62   || (($user->id == $timesheet['user_id'] && $user->can('approve_own_timesheets'))
63   || ($user->id != $timesheet['user_id'] && $user->can('approve_timesheets')));
64
65 $form = new Form('timesheetForm');
66 $form->addInput(array('type'=>'hidden','name'=>'id','value'=>$cl_timesheet_id));
67 $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'timesheet_name','style'=>'width: 250px;','value'=>$cl_name));
68 $form->addInput(array('type'=>'textarea','name'=>'comment','style'=>'width: 250px; height: 40px;','value'=>$cl_comment));
69 $form->addInput(array('type'=>'combobox','name'=>'status','value'=>$cl_status,
70   'data'=>array(ACTIVE=>$i18n->get('dropdown.status_active'),INACTIVE=>$i18n->get('dropdown.status_inactive'))));
71 $form->addInput(array('type'=>'submit','name'=>'btn_save','value'=>$i18n->get('button.save')));
72 if ($canDelete) $form->addInput(array('type'=>'submit','name'=>'btn_delete','value'=>$i18n->get('label.delete')));
73
74 if ($request->isPost()) {
75   // Validate user input.
76   if (!ttValidString($cl_name)) $err->add($i18n->get('error.field'), $i18n->get('label.thing_name'));
77   if (!ttValidString($cl_comment, true)) $err->add($i18n->get('error.field'), $i18n->get('label.comment'));
78
79   if ($request->getParameter('btn_save')) {
80     if ($err->no()) {
81       $existing_timesheet = ttTimesheetHelper::getTimesheetByName($cl_name);
82       if (!$existing_timesheet || ($cl_timesheet_id == $existing_timesheet['id'])) {
83          // Update timesheet information.
84          if (ttTimesheetHelper::update(array(
85            'id' => $cl_timesheet_id,
86            'name' => $cl_name,
87            'comment' => $cl_comment,
88            'status' => $cl_status))) {
89            header('Location: timesheets.php');
90            exit();
91         } else
92            $err->add($i18n->get('error.db'));
93       } else
94         $err->add($i18n->get('error.object_exists'));
95     }
96   }
97
98   if ($request->getParameter('btn_delete') && $canDelete) {
99     header("Location: timesheet_delete.php?id=$cl_timesheet_id");
100     exit();
101   }
102 } // isPost
103
104 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
105 $smarty->assign('onload', 'onLoad="document.timesheetForm.timesheet_name.focus()"');
106 $smarty->assign('can_delete', $canDelete);
107 $smarty->assign('title', $i18n->get('title.edit_timesheet'));
108 $smarty->assign('content_page_name', 'timesheet_edit.tpl');
109 $smarty->display('index.tpl');