A bit more progress with timesheets.
[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('manage_own_timesheets') || ttAccessAllowed('manage_timesheets'))) {
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['submitter_comment'];
57   $cl_status = $timesheet['status'];
58 }
59
60 $form = new Form('timesheetForm');
61 $form->addInput(array('type'=>'hidden','name'=>'id','value'=>$cl_timesheet_id));
62 $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'timesheet_name','style'=>'width: 250px;','value'=>$cl_name));
63 $form->addInput(array('type'=>'textarea','name'=>'comment','style'=>'width: 250px; height: 40px;','value'=>$cl_comment));
64 $form->addInput(array('type'=>'combobox','name'=>'status','value'=>$cl_status,
65   'data'=>array(ACTIVE=>$i18n->get('dropdown.status_active'),INACTIVE=>$i18n->get('dropdown.status_inactive'))));
66 $form->addInput(array('type'=>'submit','name'=>'btn_save','value'=>$i18n->get('button.save')));
67
68 if ($request->isPost()) {
69   // Validate user input.
70   if (!ttValidString($cl_name)) $err->add($i18n->get('error.field'), $i18n->get('label.thing_name'));
71   if (!ttValidString($cl_comment, true)) $err->add($i18n->get('error.field'), $i18n->get('label.comment'));
72
73   if ($err->no()) {
74     if ($request->getParameter('btn_save')) {
75       $existing_timesheet = ttTimesheetHelper::getTimesheetByName($cl_name, $timesheet['user_id']);
76       if (!$existing_timesheet || ($cl_timesheet_id == $existing_timesheet['id'])) {
77          // Update project information.
78          if (ttTimesheetHelper::update(array(
79            'id' => $cl_timesheet_id,
80            'name' => $cl_name,
81            'submitter_comment' => $cl_comment,
82            'status' => $cl_status))) {
83            header('Location: timesheets.php');
84            exit();
85         } else
86            $err->add($i18n->get('error.db'));
87       } else
88         $err->add($i18n->get('error.object_exists'));
89     }
90   }
91 } // isPost
92
93 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
94 $smarty->assign('onload', 'onLoad="document.timesheetForm.timesheet_name.focus()"');
95 $smarty->assign('show_users', count($users) > 0);
96 $smarty->assign('show_tasks', $show_tasks);
97 $smarty->assign('title', $i18n->get('title.edit_timesheet'));
98 $smarty->assign('content_page_name', 'timesheet_edit.tpl');
99 $smarty->display('index.tpl');