2015-04-24 14:26:44 +02:00
|
|
|
<?php
|
|
|
|
|
2015-06-30 11:27:32 +02:00
|
|
|
namespace Icinga\Module\Director\Web\Controller;
|
2015-04-24 14:26:44 +02:00
|
|
|
|
|
|
|
use Icinga\Application\Icinga;
|
|
|
|
use Icinga\Module\Director\Db;
|
|
|
|
use Icinga\Module\Director\Web\Form\FormLoader;
|
|
|
|
use Icinga\Module\Director\Web\Table\TableLoader;
|
|
|
|
use Icinga\Web\Controller;
|
|
|
|
use Icinga\Web\Widget;
|
|
|
|
|
|
|
|
abstract class ActionController extends Controller
|
|
|
|
{
|
|
|
|
protected $db;
|
|
|
|
|
|
|
|
protected $forcedMonitoring = false;
|
|
|
|
|
|
|
|
public function init()
|
|
|
|
{
|
2015-06-30 11:19:31 +02:00
|
|
|
// TODO: this is obsolete I guess
|
2015-04-24 14:26:44 +02:00
|
|
|
$m = Icinga::app()->getModuleManager();
|
|
|
|
if (! $m->hasLoaded('monitoring') && $m->hasInstalled('monitoring')) {
|
|
|
|
$m->loadModule('monitoring');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function loadForm($name)
|
|
|
|
{
|
|
|
|
return FormLoader::load($name, $this->Module());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function loadTable($name)
|
|
|
|
{
|
|
|
|
return TableLoader::load($name, $this->Module());
|
|
|
|
}
|
|
|
|
|
2015-06-29 10:13:39 +02:00
|
|
|
protected function setConfigTabs()
|
|
|
|
{
|
|
|
|
$this->view->tabs = Widget::create('tabs')->add('generatedconfig', array(
|
|
|
|
'label' => $this->translate('Configs'),
|
|
|
|
'url' => 'director/list/generatedconfig')
|
|
|
|
)->add('activitylog', array(
|
|
|
|
'label' => $this->translate('Activity Log'),
|
|
|
|
'url' => 'director/list/activitylog')
|
2015-07-02 14:13:42 +02:00
|
|
|
)->add('datalist', array(
|
|
|
|
'label' => $this->translate('Data lists'),
|
|
|
|
'url' => 'director/list/datalist')
|
2015-07-03 10:49:47 +02:00
|
|
|
)->add('datafield', array(
|
|
|
|
'label' => $this->translate('Data fields'),
|
|
|
|
'url' => 'director/list/datafield')
|
2015-07-03 09:01:52 +02:00
|
|
|
);
|
2015-06-29 10:13:39 +02:00
|
|
|
return $this->view->tabs;
|
|
|
|
}
|
|
|
|
|
2015-04-24 14:26:44 +02:00
|
|
|
protected function db()
|
|
|
|
{
|
|
|
|
if ($this->db === null) {
|
2015-06-29 16:01:10 +02:00
|
|
|
$resourceName = $this->Config()->get('db', 'resource');
|
|
|
|
if ($resourceName) {
|
|
|
|
$this->db = Db::fromResourceName($resourceName);
|
|
|
|
} else {
|
|
|
|
$this->redirectNow('director/welcome');
|
|
|
|
}
|
2015-04-24 14:26:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $this->db;
|
|
|
|
}
|
|
|
|
}
|