mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-24 08:39:34 -05:00
13 lines
211 B
PHP
13 lines
211 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
use Icinga\Web\Controller\ModuleActionController;
|
||
|
|
|
||
|
|
class Bpapp_TestController extends ModuleActionController
|
||
|
|
{
|
||
|
|
public function layoutAction()
|
||
|
|
{
|
||
|
|
$this->view->title = 'Testlayout';
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|