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.
11 // | There are only two ways to violate the license:
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).
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).
21 // | This license applies to this document only, not any other software
22 // | that it may be combined with.
24 // +----------------------------------------------------------------------+
26 // | https://www.anuko.com/time_tracker/credits.htm
27 // +----------------------------------------------------------------------+
29 require_once('initialize.php');
31 import('ttUserHelper');
32 import('ttRoleHelper');
35 if (!(ttAccessAllowed('manage_basic_settings') || ttAccessAllowed('manage_advanced_settings'))) {
36 header('Location: access_denied.php');
39 // End of access checks.
41 $advanced_settings = $user->can('manage_advanced_settings');
42 if (!defined('CURRENCY_DEFAULT')) define('CURRENCY_DEFAULT', '$');
44 if ($request->isPost()) {
45 $cl_group = trim($request->getParameter('group_name'));
46 $cl_currency = trim($request->getParameter('currency'));
47 if (!$cl_currency) $cl_currency = CURRENCY_DEFAULT;
48 $cl_lang = $request->getParameter('lang');
49 $cl_decimal_mark = $request->getParameter('decimal_mark');
50 $cl_date_format = $request->getParameter('date_format');
51 $cl_time_format = $request->getParameter('time_format');
52 $cl_start_week = $request->getParameter('start_week');
53 $cl_show_holidays = $request->getParameter('show_holidays');
54 $cl_tracking_mode = $request->getParameter('tracking_mode');
55 $cl_project_required = $request->getParameter('project_required');
56 $cl_task_required = $request->getParameter('task_required');
57 $cl_record_type = $request->getParameter('record_type');
58 $cl_punch_mode = $request->getParameter('punch_mode');
59 $cl_allow_overlap = $request->getParameter('allow_overlap');
60 $cl_future_entries = $request->getParameter('future_entries');
61 $cl_uncompleted_indicators = $request->getParameter('uncompleted_indicators');
62 $cl_bcc_email = trim($request->getParameter('bcc_email'));
63 $cl_allow_ip = trim($request->getParameter('allow_ip'));
66 $cl_charts = $request->getParameter('charts');
67 $cl_clients = $request->getParameter('clients');
68 $cl_client_required = $request->getParameter('client_required');
69 $cl_invoices = $request->getParameter('invoices');
70 $cl_paid_status = $request->getParameter('paid_status');
71 $cl_custom_fields = $request->getParameter('custom_fields');
72 $cl_expenses = $request->getParameter('expenses');
73 $cl_tax_expenses = $request->getParameter('tax_expenses');
74 $cl_notifications = $request->getParameter('notifications');
75 $cl_locking = $request->getParameter('locking');
76 $cl_quotas = $request->getParameter('quotas');
77 $cl_week_view = $request->getParameter('week_view');
79 $cl_group = $user->group;
80 $cl_currency = ($user->currency == ''? CURRENCY_DEFAULT : $user->currency);
81 $cl_lang = $user->lang;
82 $cl_decimal_mark = $user->decimal_mark;
83 $cl_date_format = $user->date_format;
84 $cl_time_format = $user->time_format;
85 $cl_start_week = $user->week_start;
86 $cl_show_holidays = $user->show_holidays;
87 $cl_tracking_mode = $user->tracking_mode;
88 $cl_project_required = $user->project_required;
89 $cl_task_required = $user->task_required;
90 $cl_record_type = $user->record_type;
91 $cl_punch_mode = $user->punch_mode;
92 $cl_allow_overlap = $user->allow_overlap;
93 $cl_future_entries = $user->future_entries;
94 $cl_uncompleted_indicators = $user->uncompleted_indicators;
95 $cl_bcc_email = $user->bcc_email;
96 $cl_allow_ip = $user->allow_ip;
98 // Which plugins do we have enabled?
99 $plugins = explode(',', $user->plugins);
100 $cl_charts = in_array('ch', $plugins);
101 $cl_clients = in_array('cl', $plugins);
102 $cl_client_required = in_array('cm', $plugins);
103 $cl_invoices = in_array('iv', $plugins);
104 $cl_paid_status = in_array('ps', $plugins);
105 $cl_custom_fields = in_array('cf', $plugins);
106 $cl_expenses = in_array('ex', $plugins);
107 $cl_tax_expenses = in_array('et', $plugins);
108 $cl_notifications = in_array('no', $plugins);
109 $cl_locking = in_array('lk', $plugins);
110 $cl_quotas = in_array('mq', $plugins);
111 $cl_week_view = in_array('wv', $plugins);
114 $form = new Form('groupForm');
115 $form->addInput(array('type'=>'text','maxlength'=>'200','name'=>'group_name','value'=>$cl_group,'enable'=>$advanced_settings));
116 $form->addInput(array('type'=>'text','maxlength'=>'7','name'=>'currency','value'=>$cl_currency));
118 // Prepare an array of available languages.
119 $lang_files = I18n::getLangFileList();
120 foreach ($lang_files as $lfile) {
121 $content = file(RESOURCE_DIR."/".$lfile);
123 foreach ($content as $line) {
124 if (strstr($line, 'i18n_language')) {
125 $a = explode('=', $line);
126 $lname = trim(str_replace(';','',str_replace("'","",$a[1])));
131 $longname_lang[] = array('id'=>I18n::getLangFromFilename($lfile),'name'=>$lname);
133 $longname_lang = mu_sort($longname_lang, 'name');
134 $form->addInput(array('type'=>'combobox','name'=>'lang','style'=>'width: 200px','data'=>$longname_lang,'datakeys'=>array('id','name'),'value'=>$cl_lang));
136 $DECIMAL_MARK_OPTIONS = array(array('id'=>'.','name'=>'.'),array('id'=>',','name'=>','));
137 $form->addInput(array('type'=>'combobox','name'=>'decimal_mark','style'=>'width: 150px','data'=>$DECIMAL_MARK_OPTIONS,'datakeys'=>array('id','name'),'value'=>$cl_decimal_mark,
138 'onchange'=>'adjustDecimalPreview()'));
140 $DATE_FORMAT_OPTIONS = array(
141 array('id'=>'%Y-%m-%d','name'=>'Y-m-d'),
142 array('id'=>'%m/%d/%Y','name'=>'m/d/Y'),
143 array('id'=>'%d.%m.%Y','name'=>'d.m.Y'),
144 array('id'=>'%d.%m.%Y %a','name'=>'d.m.Y a'));
145 $form->addInput(array('type'=>'combobox','name'=>'date_format','style'=>'width: 150px;','data'=>$DATE_FORMAT_OPTIONS,'datakeys'=>array('id','name'),'value'=>$cl_date_format,
146 'onchange'=>'MakeFormatPreview("date_format_preview", this);'));
147 $TIME_FORMAT_OPTIONS = array(
148 array('id'=>'%H:%M','name'=>$i18n->get('form.profile.24_hours')),
149 array('id'=>'%I:%M %p','name'=>$i18n->get('form.profile.12_hours')));
150 $form->addInput(array('type'=>'combobox','name'=>'time_format','style'=>'width: 150px;','data'=>$TIME_FORMAT_OPTIONS,'datakeys'=>array('id','name'),'value'=>$cl_time_format,
151 'onchange'=>'MakeFormatPreview("time_format_preview", this);'));
153 // Prepare week start choices.
154 $week_start_options = array();
155 foreach ($i18n->weekdayNames as $id => $week_dn) {
156 $week_start_options[] = array('id' => $id, 'name' => $week_dn);
158 $form->addInput(array('type'=>'combobox','name'=>'start_week','style'=>'width: 150px;','data'=>$week_start_options,'datakeys'=>array('id','name'),'value'=>$cl_start_week));
160 // Show holidays checkbox.
161 $form->addInput(array('type'=>'checkbox','name'=>'show_holidays','value'=>$cl_show_holidays));
163 // Prepare tracking mode choices.
164 $tracking_mode_options = array();
165 $tracking_mode_options[MODE_TIME] = $i18n->get('form.profile.mode_time');
166 $tracking_mode_options[MODE_PROJECTS] = $i18n->get('form.profile.mode_projects');
167 $tracking_mode_options[MODE_PROJECTS_AND_TASKS] = $i18n->get('form.profile.mode_projects_and_tasks');
168 $form->addInput(array('type'=>'combobox','name'=>'tracking_mode','style'=>'width: 150px;','data'=>$tracking_mode_options,'value'=>$cl_tracking_mode,'onchange'=>'handleTaskRequiredCheckbox()'));
169 $form->addInput(array('type'=>'checkbox','name'=>'project_required','value'=>$cl_project_required));
170 $form->addInput(array('type'=>'checkbox','name'=>'task_required','value'=>$cl_task_required));
172 // Prepare record type choices.
173 $record_type_options = array();
174 $record_type_options[TYPE_ALL] = $i18n->get('form.profile.type_all');
175 $record_type_options[TYPE_START_FINISH] = $i18n->get('form.profile.type_start_finish');
176 $record_type_options[TYPE_DURATION] = $i18n->get('form.profile.type_duration');
177 $form->addInput(array('type'=>'combobox','name'=>'record_type','style'=>'width: 150px;','data'=>$record_type_options,'value'=>$cl_record_type));
179 // Punch mode checkbox.
180 $form->addInput(array('type'=>'checkbox','name'=>'punch_mode','value'=>$cl_punch_mode));
182 // Allow overlap checkbox.
183 $form->addInput(array('type'=>'checkbox','name'=>'allow_overlap','value'=>$cl_allow_overlap));
185 // Future entries checkbox.
186 $form->addInput(array('type'=>'checkbox','name'=>'future_entries','value'=>$cl_future_entries));
188 // Uncompleted indicators checkbox.
189 $form->addInput(array('type'=>'checkbox','name'=>'uncompleted_indicators','value'=>$cl_uncompleted_indicators));
191 // Add bcc email control.
192 if ($advanced_settings) {
193 $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'bcc_email','value'=>$cl_bcc_email));
194 $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'allow_ip','value'=>$cl_allow_ip));
197 // Plugin checkboxes.
198 $form->addInput(array('type'=>'checkbox','name'=>'charts','value'=>$cl_charts));
199 $form->addInput(array('type'=>'checkbox','name'=>'clients','value'=>$cl_clients,'onchange'=>'handlePluginCheckboxes()'));
200 $form->addInput(array('type'=>'checkbox','name'=>'client_required','value'=>$cl_client_required));
201 $form->addInput(array('type'=>'checkbox','name'=>'invoices','value'=>$cl_invoices));
202 $form->addInput(array('type'=>'checkbox','name'=>'paid_status','value'=>$cl_paid_status));
203 $form->addInput(array('type'=>'checkbox','name'=>'custom_fields','value'=>$cl_custom_fields,'onchange'=>'handlePluginCheckboxes()'));
204 $form->addInput(array('type'=>'checkbox','name'=>'expenses','value'=>$cl_expenses,'onchange'=>'handlePluginCheckboxes()'));
205 $form->addInput(array('type'=>'checkbox','name'=>'tax_expenses','value'=>$cl_tax_expenses));
206 $form->addInput(array('type'=>'checkbox','name'=>'notifications','value'=>$cl_notifications,'onchange'=>'handlePluginCheckboxes()'));
207 $form->addInput(array('type'=>'checkbox','name'=>'locking','value'=>$cl_locking,'onchange'=>'handlePluginCheckboxes()'));
208 $form->addInput(array('type'=>'checkbox','name'=>'quotas','value'=>$cl_quotas,'onchange'=>'handlePluginCheckboxes()'));
209 $form->addInput(array('type'=>'checkbox','name'=>'week_view','value'=>$cl_week_view,'onchange'=>'handlePluginCheckboxes()'));
210 $form->addInput(array('type'=>'submit','name'=>'btn_save','value'=>$i18n->get('button.save')));
212 if ($request->isPost()) {
213 // Validate user input.
214 if (!ttValidString($cl_group, true)) $err->add($i18n->get('error.field'), $i18n->get('label.group_name'));
215 if (!ttValidString($cl_currency, true)) $err->add($i18n->get('error.field'), $i18n->get('label.currency'));
216 if ($advanced_settings) {
217 if (!ttValidEmail($cl_bcc_email, true)) $err->add($i18n->get('error.field'), $i18n->get('label.bcc'));
218 if (!ttValidIP($cl_allow_ip, true)) $err->add($i18n->get('error.field'), $i18n->get('form.profile.allow_ip'));
220 // Finished validating user input.
223 $update_result = true;
224 if ($user->canManageTeam()) {
226 // Prepare plugins string.
231 if ($cl_client_required)
237 if ($cl_custom_fields)
241 if ($cl_tax_expenses)
243 if ($cl_notifications)
252 // Recycle week view plugin options as they are not configured on this page.
253 $existing_plugins = explode(',', $user->plugins);
254 if (in_array('wvn', $existing_plugins))
256 if (in_array('wvl', $existing_plugins))
258 if (in_array('wvns', $existing_plugins))
261 $plugins = trim($plugins, ',');
263 // Prepare config string.
264 if ($cl_show_holidays)
265 $config .= ',show_holidays';
267 $config .= ',punch_mode';
268 if ($cl_allow_overlap)
269 $config .= ',allow_overlap';
270 if ($cl_future_entries)
271 $config .= ',future_entries';
272 if ($cl_uncompleted_indicators)
273 $config .= ',uncompleted_indicators';
274 $config = trim($config, ',');
276 $update_result = $user->updateGroup(array(
278 'currency' => $cl_currency,
280 'decimal_mark' => $cl_decimal_mark,
281 'date_format' => $cl_date_format,
282 'time_format' => $cl_time_format,
283 'week_start' => $cl_start_week,
284 'tracking_mode' => $cl_tracking_mode,
285 'project_required' => $cl_project_required,
286 'task_required' => $cl_task_required,
287 'record_type' => $cl_record_type,
288 'uncompleted_indicators' => $cl_uncompleted_indicators,
289 'bcc_email' => $cl_bcc_email,
290 'allow_ip' => $cl_allow_ip,
291 'plugins' => $plugins,
292 'config' => $config));
294 if ($update_result) {
295 header('Location: time.php');
298 $err->add($i18n->get('error.db'));
302 $smarty->assign('auth_external', $auth->isPasswordExternal());
303 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
304 $smarty->assign('onload', 'onLoad="handleTaskRequiredCheckbox(); handlePluginCheckboxes();"');
305 $smarty->assign('title', $i18n->get('title.group'));
306 $smarty->assign('content_page_name', 'group_edit.tpl');
307 $smarty->display('index.tpl');