Files
plugin-calendar/Controller/ConfigController.php
Frederic Guillot ada7a33402 First commit
2017-04-01 14:35:41 -04:00

33 lines
926 B
PHP

<?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();
$values += array('calendar_user_subtasks_time_tracking' => 0);
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')));
}
}