summaryrefslogtreecommitdiff
path: root/plugins/Calendar/Controller/ConfigController.php
diff options
context:
space:
mode:
authorDzial Techniczny WMW Projekt s.c <techniczna@wmwprojekt.pl>2019-12-10 11:34:53 +0100
committerDzial Techniczny WMW Projekt s.c <techniczna@wmwprojekt.pl>2019-12-10 11:34:53 +0100
commitb8fa0246803dab40cf57d40b45984c53046f2d55 (patch)
treedc92b167c7542137c385614a1d558e57669a4339 /plugins/Calendar/Controller/ConfigController.php
parent2a43146236fd8fb16f84398d85720ad84aa0a0b1 (diff)
Plugins directory and local modifications
Diffstat (limited to 'plugins/Calendar/Controller/ConfigController.php')
-rw-r--r--plugins/Calendar/Controller/ConfigController.php31
1 files changed, 31 insertions, 0 deletions
diff --git a/plugins/Calendar/Controller/ConfigController.php b/plugins/Calendar/Controller/ConfigController.php
new file mode 100644
index 00000000..61c67f9d
--- /dev/null
+++ b/plugins/Calendar/Controller/ConfigController.php
@@ -0,0 +1,31 @@
+<?php
+
+namespace Kanboard\Plugin\Calendar\Controller;
+
+/**
+ * Class ConfigController
+ *
+ * @package Kanboard\Plugin\Calendar\Controller
+ */
+class ConfigController extends \Kanboard\Controller\ConfigController
+{
+ public function show()
+ {
+ $this->response->html($this->helper->layout->config('Calendar:config/calendar', array(
+ 'title' => t('Settings').' &gt; '.t('Calendar settings'),
+ )));
+ }
+
+ public function save()
+ {
+ $values = $this->request->getValues();
+
+ if ($this->configModel->save($values)) {
+ $this->flash->success(t('Settings saved successfully.'));
+ } else {
+ $this->flash->failure(t('Unable to save your settings.'));
+ }
+
+ $this->response->redirect($this->helper->url->to('ConfigController', 'show', array('plugin' => 'Calendar')));
+ }
+}