A better comment
[timetracker.git] / client_add.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
34 // Access check.
35 if (!ttAccessCheck(right_manage_team)) {
36   header('Location: access_denied.php');
37   exit();
38 }
39
40 $projects = ttTeamHelper::getActiveProjects($user->team_id);
41
42 if ($request->isPost()) {
43   $cl_name = trim($request->getParameter('name'));
44   $cl_address = trim($request->getParameter('address'));
45   $cl_tax = $request->getParameter('tax');
46   $cl_projects = $request->getParameter('projects');
47 } else {
48   // Do not assign all projects to a new client by default. This should help to reduce clutter.
49   // foreach ($projects as $project_item)
50   //   $cl_projects[] = $project_item['id'];
51 }
52
53 $form = new Form('clientForm');
54 $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'name','style'=>'width: 350px;','value'=>$cl_name));
55 $form->addInput(array('type'=>'textarea','name'=>'address','maxlength'=>'255','style'=>'width: 350px;','cols'=>'55','rows'=>'5','value'=>$cl_address));
56 $form->addInput(array('type'=>'floatfield','name'=>'tax','size'=>'10','format'=>'.2','value'=>$cl_tax));
57 if (MODE_PROJECTS == $user->tracking_mode || MODE_PROJECTS_AND_TASKS == $user->tracking_mode)
58   $form->addInput(array('type'=>'checkboxgroup','name'=>'projects','data'=>$projects,'layout'=>'H','datakeys'=>array('id','name'),'value'=>$cl_projects));
59 $form->addInput(array('type'=>'submit','name'=>'btn_submit','value'=>$i18n->getKey('button.add')));
60
61 if ($request->isPost()) {
62   // Validate user input.
63   if (!ttValidString($cl_name)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.client_name'));
64   if (!ttValidString($cl_address, true)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.client_address'));
65   if (!ttValidFloat($cl_tax, true)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.tax'));
66
67   if ($err->no()) {
68     if (!ttClientHelper::getClientByName($cl_name)) {
69       if (ttClientHelper::insert(array(
70         'team_id' => $user->team_id,
71         'name' => $cl_name,
72         'address' => $cl_address,
73         'tax' => $cl_tax,
74         'projects' => $cl_projects,
75         'status' => ACTIVE))) {
76         header('Location: clients.php');
77         exit();
78       } else
79         $err->add($i18n->getKey('error.db'));
80      } else
81        $err->add($i18n->getKey('error.client_exists'));
82   }
83 } // isPost
84
85 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
86 $smarty->assign('onload', 'onLoad="document.clientForm.name.focus()"');
87 $smarty->assign('title', $i18n->getKey('title.add_client'));
88 $smarty->assign('content_page_name', 'client_add.tpl');
89 $smarty->display('index.tpl');