47 lines
1.9 KiB
PHP
47 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace Kanboard\Plugin\OrganonTweaks\Controller;
|
|
|
|
use Kanboard\Controller\BaseController;
|
|
|
|
/**
|
|
* Settings page for the OrganonTweaks plugin: one toggle per tweak.
|
|
*/
|
|
class ConfigController extends BaseController
|
|
{
|
|
public function show()
|
|
{
|
|
$this->response->html($this->helper->layout->config('organonTweaks:config/show', array(
|
|
'title' => t('Settings').' > '.t('Organon Tweaks'),
|
|
'values' => array(
|
|
'organon_tweaks_always_comment_icon' => (int) $this->configModel->get('organon_tweaks_always_comment_icon', 1),
|
|
'organon_tweaks_keep_scroll' => (int) $this->configModel->get('organon_tweaks_keep_scroll', 1),
|
|
'organon_tweaks_quick_click_only' => (int) $this->configModel->get('organon_tweaks_quick_click_only', 1),
|
|
'organon_tweaks_enhance_recurrence' => (int) $this->configModel->get('organon_tweaks_enhance_recurrence', 1),
|
|
),
|
|
'errors' => array(),
|
|
)));
|
|
}
|
|
|
|
public function save()
|
|
{
|
|
$values = $this->request->getValues();
|
|
|
|
$alwaysCommentIcon = isset($values['organon_tweaks_always_comment_icon']) ? 1 : 0;
|
|
$keepScroll = isset($values['organon_tweaks_keep_scroll']) ? 1 : 0;
|
|
$quickClickOnly = isset($values['organon_tweaks_quick_click_only']) ? 1 : 0;
|
|
|
|
if ($this->configModel->save(array(
|
|
'organon_tweaks_always_comment_icon' => $alwaysCommentIcon,
|
|
'organon_tweaks_keep_scroll' => $keepScroll,
|
|
'organon_tweaks_quick_click_only' => $quickClickOnly,
|
|
))) {
|
|
$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' => 'OrganonTweaks')));
|
|
}
|
|
}
|