HostGroup: Conform the class and file naming
This commit is contained in:
parent
750ed26ef6
commit
4febd5c635
|
@ -22,7 +22,7 @@ class Director_ListController extends ActionController
|
|||
'director/object/hostgroup'
|
||||
);
|
||||
$this->view->title = $this->translate('Icinga Hostgroups');
|
||||
$this->view->table = $this->loadTable('icingaHostgroup')->setConnection($this->db());
|
||||
$this->view->table = $this->loadTable('icingaHostGroup')->setConnection($this->db());
|
||||
$this->render('table');
|
||||
}
|
||||
|
||||
|
@ -33,7 +33,7 @@ class Director_ListController extends ActionController
|
|||
'director/object/hostgroupmember'
|
||||
);
|
||||
$this->view->title = $this->translate('Icinga Hostgroup Members');
|
||||
$this->view->table = $this->loadTable('icingaHostgroupMember')->setConnection($this->db());
|
||||
$this->view->table = $this->loadTable('icingaHostGroupMember')->setConnection($this->db());
|
||||
$this->render('table');
|
||||
}
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ class Director_ObjectController extends ActionController
|
|||
|
||||
public function hostgroupAction()
|
||||
{
|
||||
$this->view->form = $this->loadForm('icingaHostgroup')
|
||||
$this->view->form = $this->loadForm('icingaHostGroup')
|
||||
->setDb($this->db())
|
||||
->setSuccessUrl('director/list/hostgroups');
|
||||
|
||||
|
@ -58,7 +58,7 @@ class Director_ObjectController extends ActionController
|
|||
|
||||
public function hostgroupmemberAction()
|
||||
{
|
||||
$this->view->form = $this->loadForm('icingaHostgroupMember')
|
||||
$this->view->form = $this->loadForm('icingaHostGroupMember')
|
||||
->setDb($this->db())
|
||||
->setSuccessUrl('director/list/hostgroupmembers');
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ namespace Icinga\Module\Director\Forms;
|
|||
|
||||
use Icinga\Module\Director\Web\Form\DirectorObjectForm;
|
||||
|
||||
class IcingaHostgroupForm extends DirectorObjectForm
|
||||
class IcingaHostGroupForm extends DirectorObjectForm
|
||||
{
|
||||
public function setup()
|
||||
{
|
|
@ -4,7 +4,7 @@ namespace Icinga\Module\Director\Forms;
|
|||
|
||||
use Icinga\Module\Director\Web\Form\DirectorObjectForm;
|
||||
|
||||
class IcingaHostgroupMemberForm extends DirectorObjectForm
|
||||
class IcingaHostGroupMemberForm extends DirectorObjectForm
|
||||
{
|
||||
public function setup()
|
||||
{
|
|
@ -4,7 +4,7 @@ namespace Icinga\Module\Director\Tables;
|
|||
|
||||
use Icinga\Module\Director\Web\Table\QuickTable;
|
||||
|
||||
class IcingaHostgroupMemberTable extends QuickTable
|
||||
class IcingaHostGroupMemberTable extends QuickTable
|
||||
{
|
||||
public function getColumns()
|
||||
{
|
|
@ -4,7 +4,7 @@ namespace Icinga\Module\Director\Tables;
|
|||
|
||||
use Icinga\Module\Director\Web\Table\QuickTable;
|
||||
|
||||
class IcingaHostgroupTable extends QuickTable
|
||||
class IcingaHostGroupTable extends QuickTable
|
||||
{
|
||||
public function getColumns()
|
||||
{
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace Icinga\Module\Director\Objects;
|
||||
|
||||
class IcingaHostgroup extends IcingaObject
|
||||
class IcingaHostGroup extends IcingaObject
|
||||
{
|
||||
protected $table = 'icinga_hostgroup';
|
||||
|
Loading…
Reference in New Issue