Work in progress on separate page for plugins config.
authorNik Okuntseff <support@anuko.com>
Sun, 9 Sep 2018 17:46:27 +0000 (17:46 +0000)
committerNik Okuntseff <support@anuko.com>
Sun, 9 Sep 2018 17:46:27 +0000 (17:46 +0000)
WEB-INF/templates/group_edit.tpl
WEB-INF/templates/plugins.tpl [new file with mode: 0644]
plugins.php [new file with mode: 0644]

index db66201..d2a9476 100644 (file)
@@ -16,7 +16,7 @@ function handleTaskRequiredCheckbox() {
 }
 
 
-// handleControls - controls visibility of controls.
+// handlePluginCheckboxes - controls visibility of controls.
 function handlePluginCheckboxes() {
   var clientsCheckbox = document.getElementById("clients");
   var invoicesCheckbox = document.getElementById("invoices");
diff --git a/WEB-INF/templates/plugins.tpl b/WEB-INF/templates/plugins.tpl
new file mode 100644 (file)
index 0000000..f72d569
--- /dev/null
@@ -0,0 +1,147 @@
+<script>
+// handlePluginCheckboxes - controls visibility of controls.
+function handlePluginCheckboxes() {
+  var clientsCheckbox = document.getElementById("clients");
+  var invoicesCheckbox = document.getElementById("invoices");
+  var requiredCheckbox = document.getElementById("client_required");
+  var requiredLabel = document.getElementById("client_required_label");
+  if (clientsCheckbox.checked) {
+    requiredCheckbox.style.visibility = "visible";
+    requiredLabel.style.visibility = "visible";
+    invoicesCheckbox.disabled = false;
+  } else {
+    requiredCheckbox.checked = false;
+    requiredCheckbox.style.visibility = "hidden";
+    requiredLabel.style.visibility = "hidden";
+    invoicesCheckbox.checked = false;
+    invoicesCheckbox.disabled = true;
+  }
+
+  var expensesCheckbox = document.getElementById("expenses");
+  var taxCheckbox = document.getElementById("tax_expenses");
+  var taxLabel = document.getElementById("tax_label");
+  if (expensesCheckbox.checked) {
+    taxCheckbox.style.visibility = "visible";
+    taxLabel.style.visibility = "visible";
+  } else {
+    taxCheckbox.checked = false;
+    taxCheckbox.style.visibility = "hidden";
+    taxLabel.style.visibility = "hidden";
+  }
+  var configureLabel = document.getElementById("expenses_config");
+  if (expensesCheckbox.checked) {
+    configureLabel.style.visibility = "visible";
+  } else {
+    configureLabel.style.visibility = "hidden";
+  }
+
+  var customFieldsCheckbox = document.getElementById("custom_fields");
+  configureLabel = document.getElementById("cf_config");
+  if (customFieldsCheckbox.checked) {
+    configureLabel.style.visibility = "visible";
+  } else {
+    configureLabel.style.visibility = "hidden";
+  }
+
+  var notificationsCheckbox = document.getElementById("notifications");
+  configureLabel = document.getElementById("notifications_config");
+  if (notificationsCheckbox.checked) {
+    configureLabel.style.visibility = "visible";
+  } else {
+    configureLabel.style.visibility = "hidden";
+  }
+
+  var lockingCheckbox = document.getElementById("locking");
+  configureLabel = document.getElementById("locking_config");
+  if (lockingCheckbox.checked) {
+    configureLabel.style.visibility = "visible";
+  } else {
+    configureLabel.style.visibility = "hidden";
+  }
+
+  var quotasCheckbox = document.getElementById("quotas");
+  configureLabel = document.getElementById("quotas_config");
+  if (quotasCheckbox.checked){
+    configureLabel.style.visibility = "visible";
+  } else {
+    configureLabel.style.visibility = "hidden";
+  }
+
+  var weekViewCheckbox = document.getElementById("week_view");
+  configureLabel = document.getElementById("week_view_config");
+  if (weekViewCheckbox.checked){
+    configureLabel.style.visibility = "visible";
+  } else {
+    configureLabel.style.visibility = "hidden";
+  }
+
+  var workUnitsCheckbox = document.getElementById("work_units");
+  configureLabel = document.getElementById("work_units_config");
+  if (workUnitsCheckbox.checked){
+    configureLabel.style.visibility = "visible";
+  } else {
+    configureLabel.style.visibility = "hidden";
+  }
+}
+</script>
+
+{$forms.pluginsForm.open}
+<table cellspacing="4" cellpadding="7" border="0">
+    <tr>
+      <td>
+        <table cellspacing="1" cellpadding="2" border="0">
+          <tr>
+            <td align="right" nowrap>{$forms.pluginsForm.charts.control}</td>
+            <td><label for="charts">{$i18n.title.charts}</label></td>
+          </tr>
+          <tr>
+            <td align="right" nowrap>{$forms.pluginsForm.clients.control}</td>
+            <td><label for="clients">{$i18n.title.clients}</label> {$forms.pluginsForm.client_required.control} <span id="client_required_label"><label for="client_required">{$i18n.label.required}</label></span></td>
+          </tr>
+          <tr>
+            <td align="right" nowrap>{$forms.pluginsForm.invoices.control}</td>
+            <td><label for="invoices">{$i18n.title.invoices}</label></td>
+          </tr>
+          <tr>
+            <td align="right" nowrap>{$forms.pluginsForm.paid_status.control}</td>
+            <td><label for="paid_status">{$i18n.label.paid_status}</label></td>
+          </tr>
+          <tr>
+            <td align="right" nowrap>{$forms.pluginsForm.custom_fields.control}</td>
+            <td><label for="custom_fields">{$i18n.label.custom_fields}</label> <span id="cf_config"><a href="cf_custom_fields.php">{$i18n.label.configure}</a></span></td>
+          </tr>
+          <tr>
+            <td align="right" nowrap>{$forms.pluginsForm.expenses.control}</td>
+            <td><label for="expenses">{$i18n.title.expenses}</label> {$forms.pluginsForm.tax_expenses.control} <span id="tax_label"><label for="tax_expenses">{$i18n.label.tax}</label></span> <span id="expenses_config"><a href="predefined_expenses.php">{$i18n.label.configure}</a></span></td>
+          </tr>
+          <tr>
+            <td align="right" nowrap>{$forms.pluginsForm.notifications.control}</td>
+            <td><label for="notifications">{$i18n.title.notifications}</label> <span id="notifications_config"><a href="notifications.php">{$i18n.label.configure}</a></span></td>
+          </tr>
+          <tr>
+            <td align="right" nowrap>{$forms.pluginsForm.locking.control}</td>
+            <td><label for="locking">{$i18n.title.locking}</label> <span id="locking_config"><a href="locking.php">{$i18n.label.configure}</a></span></td>
+          </tr>
+          <tr>
+            <td align="right" nowrap>{$forms.pluginsForm.quotas.control}</td>
+            <td><label for="quotas">{$i18n.label.monthly_quotas}</label> <span id="quotas_config"><a href="quotas.php">{$i18n.label.configure}</a></span></td>
+          </tr>
+          <tr>
+            <td align="right" nowrap>{$forms.pluginsForm.week_view.control}</td>
+            <td><label for="week_view">{$i18n.label.week_view}</label> <span id="week_view_config"><a href="week_view.php">{$i18n.label.configure}</a></span></td>
+          </tr>
+          <tr>
+            <td align="right" nowrap>{$forms.pluginsForm.work_units.control}</td>
+            <td><label for="week_view">{$i18n.label.work_units}</label> <span id="work_units_config"><a href="work_units.php">{$i18n.label.configure}</a></span></td>
+          </tr>
+          <tr>
+            <td colspan="2">&nbsp;</td>
+          </tr>
+          <tr>
+            <td colspan="2" height="50" align="center">{$forms.pluginsForm.btn_save.control}</td>
+          </tr>
+        </table>
+      </td>
+    </tr>
+</table>
+{$forms.pluginsForm.close}
diff --git a/plugins.php b/plugins.php
new file mode 100644 (file)
index 0000000..fce36a7
--- /dev/null
@@ -0,0 +1,151 @@
+<?php
+// +----------------------------------------------------------------------+
+// | Anuko Time Tracker
+// +----------------------------------------------------------------------+
+// | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
+// +----------------------------------------------------------------------+
+// | LIBERAL FREEWARE LICENSE: This source code document may be used
+// | by anyone for any purpose, and freely redistributed alone or in
+// | combination with other software, provided that the license is obeyed.
+// |
+// | There are only two ways to violate the license:
+// |
+// | 1. To redistribute this code in source form, with the copyright
+// |    notice or license removed or altered. (Distributing in compiled
+// |    forms without embedded copyright notices is permitted).
+// |
+// | 2. To redistribute modified versions of this code in *any* form
+// |    that bears insufficient indications that the modifications are
+// |    not the work of the original author(s).
+// |
+// | This license applies to this document only, not any other software
+// | that it may be combined with.
+// |
+// +----------------------------------------------------------------------+
+// | Contributors:
+// | https://www.anuko.com/time_tracker/credits.htm
+// +----------------------------------------------------------------------+
+
+require_once('initialize.php');
+import('form.Form');
+
+// Access checks.
+if (!ttAccessAllowed('manage_features')) {
+  header('Location: access_denied.php');
+  exit();
+}
+// End of access checks.
+
+$config = new ttConfigHelper($user->config);
+
+
+if ($request->isPost()) {
+  // Plugin checkboxes.
+  $cl_charts = $request->getParameter('charts');
+  $cl_clients = $request->getParameter('clients');
+  $cl_client_required = $request->getParameter('client_required');
+  $cl_invoices = $request->getParameter('invoices');
+  $cl_paid_status = $request->getParameter('paid_status');
+  $cl_custom_fields = $request->getParameter('custom_fields');
+  $cl_expenses = $request->getParameter('expenses');
+  $cl_tax_expenses = $request->getParameter('tax_expenses');
+  $cl_notifications = $request->getParameter('notifications');
+  $cl_locking = $request->getParameter('locking');
+  $cl_quotas = $request->getParameter('quotas');
+  $cl_week_view = $request->getParameter('week_view');
+  $cl_work_units = $request->getParameter('work_units');
+} else {
+  // Which plugins do we have enabled?
+  $plugins = explode(',', $user->plugins);
+  $cl_charts = in_array('ch', $plugins);
+  $cl_clients = in_array('cl', $plugins);
+  $cl_client_required = in_array('cm', $plugins);
+  $cl_invoices = in_array('iv', $plugins);
+  $cl_paid_status = in_array('ps', $plugins);
+  $cl_custom_fields = in_array('cf', $plugins);
+  $cl_expenses = in_array('ex', $plugins);
+  $cl_tax_expenses = in_array('et', $plugins);
+  $cl_notifications = in_array('no', $plugins);
+  $cl_locking = in_array('lk', $plugins);
+  $cl_quotas = in_array('mq', $plugins);
+  $cl_week_view = in_array('wv', $plugins);
+  $cl_work_units = in_array('wu', $plugins);
+}
+
+$form = new Form('pluginsForm');
+
+// Plugin checkboxes.
+$form->addInput(array('type'=>'checkbox','name'=>'charts','value'=>$cl_charts));
+$form->addInput(array('type'=>'checkbox','name'=>'clients','value'=>$cl_clients,'onchange'=>'handlePluginCheckboxes()'));
+$form->addInput(array('type'=>'checkbox','name'=>'client_required','value'=>$cl_client_required));
+$form->addInput(array('type'=>'checkbox','name'=>'invoices','value'=>$cl_invoices));
+$form->addInput(array('type'=>'checkbox','name'=>'paid_status','value'=>$cl_paid_status));
+$form->addInput(array('type'=>'checkbox','name'=>'custom_fields','value'=>$cl_custom_fields,'onchange'=>'handlePluginCheckboxes()'));
+$form->addInput(array('type'=>'checkbox','name'=>'expenses','value'=>$cl_expenses,'onchange'=>'handlePluginCheckboxes()'));
+$form->addInput(array('type'=>'checkbox','name'=>'tax_expenses','value'=>$cl_tax_expenses));
+$form->addInput(array('type'=>'checkbox','name'=>'notifications','value'=>$cl_notifications,'onchange'=>'handlePluginCheckboxes()'));
+$form->addInput(array('type'=>'checkbox','name'=>'locking','value'=>$cl_locking,'onchange'=>'handlePluginCheckboxes()'));
+$form->addInput(array('type'=>'checkbox','name'=>'quotas','value'=>$cl_quotas,'onchange'=>'handlePluginCheckboxes()'));
+$form->addInput(array('type'=>'checkbox','name'=>'week_view','value'=>$cl_week_view,'onchange'=>'handlePluginCheckboxes()'));
+$form->addInput(array('type'=>'checkbox','name'=>'work_units','value'=>$cl_work_units,'onchange'=>'handlePluginCheckboxes()'));
+
+$form->addInput(array('type'=>'submit','name'=>'btn_save','value'=>$i18n->get('button.save')));
+
+if ($request->isPost()) {
+
+  // Validate user input. Do we have to?
+
+  if ($err->no()) {
+    // Prepare plugins string.
+    if ($cl_charts)
+      $plugins .= ',ch';
+    if ($cl_clients)
+      $plugins .= ',cl';
+    if ($cl_client_required)
+      $plugins .= ',cm';
+    if ($cl_invoices)
+      $plugins .= ',iv';
+    if ($cl_paid_status)
+      $plugins .= ',ps';
+    if ($cl_custom_fields)
+      $plugins .= ',cf';
+    if ($cl_expenses)
+      $plugins .= ',ex';
+    if ($cl_tax_expenses)
+      $plugins .= ',et';
+    if ($cl_notifications)
+      $plugins .= ',no';
+    if ($cl_locking)
+      $plugins .= ',lk';
+    if ($cl_quotas)
+      $plugins .= ',mq';
+    if ($cl_week_view)
+      $plugins .= ',wv';
+    if ($cl_work_units)
+      $plugins .= ',wu';
+
+    // Recycle week view plugin options as they are not configured on this page.
+    $existing_plugins = explode(',', $user->plugins);
+    if (in_array('wvn', $existing_plugins))
+      $plugins .= ',wvn';
+    if (in_array('wvl', $existing_plugins))
+      $plugins .= ',wvl';
+    if (in_array('wvns', $existing_plugins))
+      $plugins .= ',wvns';
+
+    $plugins = trim($plugins, ',');
+
+    if ($user->updateGroup(array(
+      'plugins' => $plugins))) {
+      header('Location: time.php');
+      exit();
+    } else
+      $err->add($i18n->get('error.db'));
+  }
+} // isPost
+
+$smarty->assign('forms', array($form->getName()=>$form->toArray()));
+$smarty->assign('onload', 'onLoad="handlePluginCheckboxes();"');
+$smarty->assign('title', $i18n->get('form.group_edit.plugins')); // TODO: fix this in transl;ation files.
+$smarty->assign('content_page_name', 'plugins.tpl');
+$smarty->display('index.tpl');