A bit more refactoring.
[timetracker.git] / client_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('ttClientHelper');
32 import('ttTeamHelper');
33 import('ttGroupHelper');
34
35 // Access checks.
36 if (!ttAccessAllowed('manage_clients')) {
37   header('Location: access_denied.php');
38   exit();
39 }
40 if (!$user->isPluginEnabled('cl')) {
41   header('Location: feature_disabled.php');
42   exit();
43 }
44
45 $cl_id = (int) $request->getParameter('id');
46
47 $projects = ttGroupHelper::getActiveProjects();
48
49 if ($request->isPost()) {
50   $cl_name = trim($request->getParameter('name'));
51   $cl_address = trim($request->getParameter('address'));
52   $cl_tax = trim($request->getParameter('tax'));
53   $cl_status = $request->getParameter('status');
54   $cl_projects = $request->getParameter('projects');
55 } else {
56   $client = ttClientHelper::getClient($cl_id, true);
57   $cl_name = $client['name'];
58   $cl_address = $client['address'];
59   $cl_tax = $client['tax'];
60   $cl_status = $client['status'];
61   $assigned_projects = ttClientHelper::getAssignedProjects($cl_id);
62   foreach($assigned_projects as $project_item) {
63     $cl_projects[] = $project_item['id'];
64   }
65 }
66
67 $show_projects = (MODE_PROJECTS == $user->getTrackingMode() || MODE_PROJECTS_AND_TASKS == $user->getTrackingMode()) && count($projects) > 0;
68
69 $form = new Form('clientForm');
70 $form->addInput(array('type'=>'hidden','name'=>'id','value'=>$cl_id));
71 $form->addInput(array('type'=>'text','name'=>'name','maxlength'=>'100','style'=>'width: 350px;','value'=>$cl_name));
72 $form->addInput(array('type'=>'textarea','name'=>'address','maxlength'=>'255','style'=>'width: 350px; height: 80px;','value'=>$cl_address));
73 $form->addInput(array('type'=>'floatfield','name'=>'tax','size'=>'10','format'=>'.2','value'=>$cl_tax));
74 $form->addInput(array('type'=>'combobox','name'=>'status','value'=>$cl_status,
75   'data'=>array(ACTIVE=>$i18n->get('dropdown.status_active'),INACTIVE=>$i18n->get('dropdown.status_inactive'))));
76 if ($show_projects)
77   $form->addInput(array('type'=>'checkboxgroup','name'=>'projects','data'=>$projects,'datakeys'=>array('id','name'),'layout'=>'H','value'=>$cl_projects));
78 $form->addInput(array('type'=>'submit','name'=>'btn_save','value'=>$i18n->get('button.save')));
79 $form->addInput(array('type'=>'submit','name'=>'btn_copy','value'=>$i18n->get('button.copy')));
80
81 if ($request->isPost()) {
82   // Validate user input.
83   if (!ttValidString($cl_name)) $err->add($i18n->get('error.field'), $i18n->get('label.client_name'));
84   if (!ttValidString($cl_address, true)) $err->add($i18n->get('error.field'), $i18n->get('label.client_address'));
85   if (!ttValidFloat($cl_tax, true)) $err->add($i18n->get('error.field'), $i18n->get('label.tax'));
86
87   if ($err->no()) {
88     if ($request->getParameter('btn_save')) {
89       $client = ttClientHelper::getClientByName($cl_name);
90       if (($client && ($cl_id == $client['id'])) || !$client) {
91         if (ttClientHelper::update(array(
92           'id' => $cl_id,
93           'name' => $cl_name,
94           'address' => $cl_address,
95           'tax' => $cl_tax,
96           'status' => $cl_status,
97           'projects' => $cl_projects))) {
98           header('Location: clients.php');
99           exit();
100         } else
101           $err->add($i18n->get('error.db'));
102       } else
103         $err->add($i18n->get('error.object_exists'));
104     }
105
106     if ($request->getParameter('btn_copy')) {
107       if (!ttClientHelper::getClientByName($cl_name)) {
108         if (ttClientHelper::insert(array('name' => $cl_name,
109           'address' => $cl_address,
110           'tax' => $cl_tax,
111           'status' => $cl_status,
112           'projects' => $cl_projects))) {
113           header('Location: clients.php');
114           exit();
115         } else
116           $err->add($i18n->get('error.db'));
117       } else
118         $err->add($i18n->get('error.object_exists'));
119     }
120   }
121 } // isPost
122
123 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
124 $smarty->assign('show_projects', $show_projects);
125 $smarty->assign('title', $i18n->get('title.edit_client'));
126 $smarty->assign('content_page_name', 'client_edit.tpl');
127 $smarty->display('index.tpl');