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