Initial coding of group editor done.
[timetracker.git] / group_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('ttUserHelper');
32 import('ttRoleHelper');
33 import('ttConfigHelper');
34
35 // Access checks.
36 if (!(ttAccessAllowed('manage_basic_settings') || ttAccessAllowed('manage_advanced_settings'))) {
37   header('Location: access_denied.php');
38   exit();
39 }
40 $group_id = (int)$request->getParameter('id');
41 if ($group_id && !$user->isGroupValid($group_id)) {
42   header('Location: access_denied.php');
43   exit();
44 }
45 // End of access checks.
46
47 if ($group_id) {
48   // We are passed a valid group_id.
49   // Set on behalf group accordingly.
50   $user->setOnBehalfGroup($group_id);
51 }
52
53 if (!$group_id) $group_id = $user->getActiveGroup();
54 $groups = $user->getGroupsForDropdown();
55 $group = ttGroupHelper::getGroupAttrs($group_id);
56 $config = new ttConfigHelper($group['config']);
57
58 $advanced_settings = $user->can('manage_advanced_settings');
59 if (!defined('CURRENCY_DEFAULT')) define('CURRENCY_DEFAULT', '$');
60
61 if ($request->isPost()) {
62   $cl_group = trim($request->getParameter('group_name'));
63   $cl_description = trim($request->getParameter('description'));
64   $cl_currency = trim($request->getParameter('currency'));
65   if (!$cl_currency) $cl_currency = CURRENCY_DEFAULT;
66   $cl_lang = $request->getParameter('lang');
67   $cl_decimal_mark = $request->getParameter('decimal_mark');
68   $cl_date_format = $request->getParameter('date_format');
69   $cl_time_format = $request->getParameter('time_format');
70   $cl_start_week = $request->getParameter('start_week');
71   $cl_show_holidays = $request->getParameter('show_holidays');
72   $cl_tracking_mode = $request->getParameter('tracking_mode');
73   $cl_project_required = $request->getParameter('project_required');
74   $cl_task_required = $request->getParameter('task_required');
75   $cl_record_type = $request->getParameter('record_type');
76   $cl_punch_mode = $request->getParameter('punch_mode');
77   $cl_allow_overlap = $request->getParameter('allow_overlap');
78   $cl_future_entries = $request->getParameter('future_entries');
79   $cl_uncompleted_indicators = $request->getParameter('uncompleted_indicators');
80   $cl_bcc_email = trim($request->getParameter('bcc_email'));
81   $cl_allow_ip = trim($request->getParameter('allow_ip'));
82 } else {
83   $cl_group = $group['name'];
84   $cl_description = $group['description'];
85   $cl_currency = ($group['currency'] == ''? CURRENCY_DEFAULT : $group['currency']);
86   $cl_lang = $group['lang'];
87   $cl_decimal_mark = $group['decimal_mark'];
88   $cl_date_format = $group['date_format'];
89   $cl_time_format = $group['time_format'];
90   $cl_start_week = $group['week_start'];
91   $cl_show_holidays = $config->getDefinedValue('show_holidays');
92   $cl_tracking_mode = $group['tracking_mode'];
93   $cl_project_required = $group['project_required'];
94   $cl_task_required = $group['task_required'];
95   $cl_record_type = $group['record_type'];
96   $cl_punch_mode = $config->getDefinedValue('punch_mode');
97   $cl_allow_overlap = $config->getDefinedValue('allow_overlap');
98   $cl_future_entries = $config->getDefinedValue('future_entries');
99   $cl_uncompleted_indicators = $config->getDefinedValue('uncompleted_indicators');
100   $cl_bcc_email = $group['bcc_email'];
101   $cl_allow_ip = $group['allow_ip'];
102 }
103
104 $form = new Form('groupForm');
105 $form->addInput(array('type'=>'hidden','name'=>'id','value'=>$group_id));
106 if (count($groups) > 1) {
107   $form->addInput(array('type'=>'combobox',
108     'onchange'=>'document.groupForm.group_changed.value=1;document.groupForm.submit();',
109     'name'=>'group',
110     'style'=>'width: 250px;',
111     'value'=>$group_id,
112     'data'=>$groups,
113     'datakeys'=>array('id','name')));
114   $form->addInput(array('type'=>'hidden','name'=>'group_changed'));
115 }
116 $form->addInput(array('type'=>'text','maxlength'=>'200','name'=>'group_name','value'=>$cl_group,'enable'=>$advanced_settings));
117 $form->addInput(array('type'=>'textarea','name'=>'description','style'=>'width: 250px; height: 40px;','value'=>$cl_description));
118 $form->addInput(array('type'=>'text','maxlength'=>'7','name'=>'currency','value'=>$cl_currency));
119
120 // Prepare an array of available languages.
121 $lang_files = I18n::getLangFileList();
122 foreach ($lang_files as $lfile) {
123   $content = file(RESOURCE_DIR."/".$lfile);
124   $lname = '';
125   foreach ($content as $line) {
126     if (strstr($line, 'i18n_language')) {
127       $a = explode('=', $line);
128       $lname = trim(str_replace(';','',str_replace("'","",$a[1])));
129       break;
130     }
131   }
132   unset($content);
133   $longname_lang[] = array('id'=>I18n::getLangFromFilename($lfile),'name'=>$lname);
134 }
135 $longname_lang = mu_sort($longname_lang, 'name');
136 $form->addInput(array('type'=>'combobox','name'=>'lang','style'=>'width: 200px','data'=>$longname_lang,'datakeys'=>array('id','name'),'value'=>$cl_lang));
137
138 $DECIMAL_MARK_OPTIONS = array(array('id'=>'.','name'=>'.'),array('id'=>',','name'=>','));
139 $form->addInput(array('type'=>'combobox','name'=>'decimal_mark','style'=>'width: 150px','data'=>$DECIMAL_MARK_OPTIONS,'datakeys'=>array('id','name'),'value'=>$cl_decimal_mark,
140   'onchange'=>'adjustDecimalPreview()'));
141
142 $DATE_FORMAT_OPTIONS = array(
143   array('id'=>'%Y-%m-%d','name'=>'Y-m-d'),
144   array('id'=>'%m/%d/%Y','name'=>'m/d/Y'),
145   array('id'=>'%d.%m.%Y','name'=>'d.m.Y'),
146   array('id'=>'%d.%m.%Y %a','name'=>'d.m.Y a'));
147 $form->addInput(array('type'=>'combobox','name'=>'date_format','style'=>'width: 150px;','data'=>$DATE_FORMAT_OPTIONS,'datakeys'=>array('id','name'),'value'=>$cl_date_format,
148   'onchange'=>'MakeFormatPreview(&quot;date_format_preview&quot;, this);'));
149 $TIME_FORMAT_OPTIONS = array(
150   array('id'=>'%H:%M','name'=>$i18n->get('form.group_edit.24_hours')),
151   array('id'=>'%I:%M %p','name'=>$i18n->get('form.group_edit.12_hours')));
152 $form->addInput(array('type'=>'combobox','name'=>'time_format','style'=>'width: 150px;','data'=>$TIME_FORMAT_OPTIONS,'datakeys'=>array('id','name'),'value'=>$cl_time_format,
153   'onchange'=>'MakeFormatPreview(&quot;time_format_preview&quot;, this);'));
154
155 // Prepare week start choices.
156 $week_start_options = array();
157 foreach ($i18n->weekdayNames as $id => $week_dn) {
158   $week_start_options[] = array('id' => $id, 'name' => $week_dn);
159 }
160 $form->addInput(array('type'=>'combobox','name'=>'start_week','style'=>'width: 150px;','data'=>$week_start_options,'datakeys'=>array('id','name'),'value'=>$cl_start_week));
161
162 // Show holidays checkbox.
163 $form->addInput(array('type'=>'checkbox','name'=>'show_holidays','value'=>$cl_show_holidays));
164
165 // Prepare tracking mode choices.
166 $tracking_mode_options = array();
167 $tracking_mode_options[MODE_TIME] = $i18n->get('form.group_edit.mode_time');
168 $tracking_mode_options[MODE_PROJECTS] = $i18n->get('form.group_edit.mode_projects');
169 $tracking_mode_options[MODE_PROJECTS_AND_TASKS] = $i18n->get('form.group_edit.mode_projects_and_tasks');
170 $form->addInput(array('type'=>'combobox','name'=>'tracking_mode','style'=>'width: 150px;','data'=>$tracking_mode_options,'value'=>$cl_tracking_mode,'onchange'=>'handleTaskRequiredCheckbox()'));
171 $form->addInput(array('type'=>'checkbox','name'=>'project_required','value'=>$cl_project_required));
172 $form->addInput(array('type'=>'checkbox','name'=>'task_required','value'=>$cl_task_required));
173
174 // Prepare record type choices.
175 $record_type_options = array();
176 $record_type_options[TYPE_ALL] = $i18n->get('form.group_edit.type_all');
177 $record_type_options[TYPE_START_FINISH] = $i18n->get('form.group_edit.type_start_finish');
178 $record_type_options[TYPE_DURATION] = $i18n->get('form.group_edit.type_duration');
179 $form->addInput(array('type'=>'combobox','name'=>'record_type','style'=>'width: 150px;','data'=>$record_type_options,'value'=>$cl_record_type));
180
181 // Punch mode checkbox.
182 $form->addInput(array('type'=>'checkbox','name'=>'punch_mode','value'=>$cl_punch_mode));
183
184 // Allow overlap checkbox.
185 $form->addInput(array('type'=>'checkbox','name'=>'allow_overlap','value'=>$cl_allow_overlap));
186
187 // Future entries checkbox.
188 $form->addInput(array('type'=>'checkbox','name'=>'future_entries','value'=>$cl_future_entries));
189
190 // Uncompleted indicators checkbox.
191 $form->addInput(array('type'=>'checkbox','name'=>'uncompleted_indicators','value'=>$cl_uncompleted_indicators));
192
193 // Add bcc email control.
194 if ($advanced_settings) {
195   $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'bcc_email','value'=>$cl_bcc_email));
196   $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'allow_ip','value'=>$cl_allow_ip));
197 }
198
199 $form->addInput(array('type'=>'submit','name'=>'btn_save','value'=>$i18n->get('button.save')));
200 if ($user->can('delete_group')) $form->addInput(array('type'=>'submit','name'=>'btn_delete','value'=>$i18n->get('button.delete')));
201
202 $form->setValueByElement('group_changed','');
203
204 if ($request->isPost()) {
205   if ($request->getParameter('group_changed')) {
206     // User changed the group in dropdown.
207     $new_group_id = $request->getParameter('group');
208     // Redirect to self.
209     header('Location: group_edit.php?id='.$new_group_id);
210     exit();
211   }
212
213   if ($request->getParameter('btn_delete')) {
214     // Delete button pressed, redirect.
215     header('Location: group_delete.php?id='.$group_id);
216     exit();
217   }
218
219   // Validate user input.
220   if (!ttValidString($cl_group)) $err->add($i18n->get('error.field'), $i18n->get('label.group_name'));
221   if (!ttValidString($cl_description, true)) $err->add($i18n->get('error.field'), $i18n->get('label.description'));
222   if (!ttValidString($cl_currency, true)) $err->add($i18n->get('error.field'), $i18n->get('label.currency'));
223   if ($advanced_settings) {
224     if (!ttValidEmail($cl_bcc_email, true)) $err->add($i18n->get('error.field'), $i18n->get('label.bcc'));
225     if (!ttValidIP($cl_allow_ip, true)) $err->add($i18n->get('error.field'), $i18n->get('form.group_edit.allow_ip'));
226   }
227   // Finished validating user input.
228
229   if ($err->no()) {
230     // Update config.
231     $config->setDefinedValue('show_holidays', $cl_show_holidays);
232     $config->setDefinedValue('punch_mode', $cl_punch_mode);
233     $config->setDefinedValue('allow_overlap', $cl_allow_overlap);
234     $config->setDefinedValue('future_entries', $cl_future_entries);
235     $config->setDefinedValue('uncompleted_indicators', $cl_uncompleted_indicators);
236
237     if ($user->updateGroup(array(
238       'group_id' => $group_id,
239       'name' => $cl_group,
240       'description' => $cl_description,
241       'currency' => $cl_currency,
242       'lang' => $cl_lang,
243       'decimal_mark' => $cl_decimal_mark,
244       'date_format' => $cl_date_format,
245       'time_format' => $cl_time_format,
246       'week_start' => $cl_start_week,
247       'tracking_mode' => $cl_tracking_mode,
248       'project_required' => $cl_project_required,
249       'task_required' => $cl_task_required,
250       'record_type' => $cl_record_type,
251       'uncompleted_indicators' => $cl_uncompleted_indicators,
252       'bcc_email' => $cl_bcc_email,
253       'allow_ip' => $cl_allow_ip,
254       'config' => $config->getConfig()))) {
255       header('Location: success.php');
256       exit();
257     } else
258       $err->add($i18n->get('error.db'));
259   }
260 } // isPost
261
262 $smarty->assign('auth_external', $auth->isPasswordExternal());
263 $smarty->assign('group_id', $group_id);
264 $smarty->assign('group_dropdown', count($groups) > 1);
265 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
266 $smarty->assign('onload', 'onLoad="handleTaskRequiredCheckbox(); handlePluginCheckboxes();"');
267 $smarty->assign('title', $i18n->get('title.edit_group'));
268 $smarty->assign('content_page_name', 'group_edit.tpl');
269 $smarty->display('index.tpl');