mirror of
https://github.com/Icinga/icingaweb2-module-graphite.git
synced 2026-02-19 02:34:05 -05:00
16 lines
441 B
PHP
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();
|
|
}
|
|
}
|