icingaweb2-module-graphite/application/controllers/SubcontainerController.php
2017-11-08 18:36:34 +01:00

16 lines
441 B
PHP

<?php
namespace Icinga\Module\Graphite\Controllers;
use Icinga\Module\Graphite\Forms\TimeRangePicker\CustomForm;
use Icinga\Web\Controller;
class SubcontainerController extends Controller
{
public function customtimerangepickerAction()
{
$this->view->form = $form = new CustomForm();
$form->setRedirectUrl($this->getRequest()->getUrl()->getParams()->getRequired('redirect'))
->handleRequest();
}
}