icingaweb2-module-businessp.../application/controllers/IndexController.php

32 lines
902 B
PHP
Raw Normal View History

2015-03-16 04:08:00 -04:00
<?php
2015-11-17 08:21:59 -05:00
namespace Icinga\Module\Businessprocess\Controllers;
2016-12-09 03:53:36 -05:00
use Icinga\Module\Businessprocess\Web\Controller;
2015-03-16 04:08:00 -04:00
2015-11-17 08:21:59 -05:00
class IndexController extends Controller
2015-03-16 04:08:00 -04:00
{
/**
* Show a welcome page if no process is available
*/
public function indexAction()
{
$configs = $this->storage()->listProcesses();
if (! empty($configs)) {
// Redirect to show the first process if there is any
$this->redirectNow(
'businessprocess/process/show?mode=tile',
2015-03-16 04:08:00 -04:00
array('config' => key($configs))
);
}
$this->tabs()->add('welcome', array(
'label' => $this->translate('Business Processes'),
'url' => $this->getRequest()->getUrl()
))->activate('welcome');
2015-03-16 04:08:00 -04:00
// Check back from time to time, maybe someone created a process
$this->setAutorefreshInterval(30);
}
}