mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-31 01:34:12 +02:00
UserGroup: Conform the class and file naming
This commit is contained in:
parent
8b22a3ee81
commit
f02c5e6f1d
@ -143,7 +143,7 @@ class Director_ListController extends ActionController
|
||||
'director/object/usergroup'
|
||||
);
|
||||
$this->view->title = $this->translate('Icinga Usergroups');
|
||||
$this->view->table = $this->loadTable('icingaUsergroup')->setConnection($this->db());
|
||||
$this->view->table = $this->loadTable('icingaUserGroup')->setConnection($this->db());
|
||||
$this->render('table');
|
||||
}
|
||||
|
||||
|
@ -204,7 +204,7 @@ class Director_ObjectController extends ActionController
|
||||
|
||||
public function usergroupAction()
|
||||
{
|
||||
$this->view->form = $this->loadForm('icingaUsergroup')
|
||||
$this->view->form = $this->loadForm('icingaUserGroup')
|
||||
->setDb($this->db())
|
||||
->setSuccessUrl('director/list/usergroups');
|
||||
|
||||
|
@ -4,7 +4,7 @@ namespace Icinga\Module\Director\Forms;
|
||||
|
||||
use Icinga\Module\Director\Web\Form\DirectorObjectForm;
|
||||
|
||||
class IcingaUsergroupForm extends DirectorObjectForm
|
||||
class IcingaUserGroupForm extends DirectorObjectForm
|
||||
{
|
||||
public function setup()
|
||||
{
|
@ -4,7 +4,7 @@ namespace Icinga\Module\Director\Tables;
|
||||
|
||||
use Icinga\Module\Director\Web\Table\QuickTable;
|
||||
|
||||
class IcingaUsergroupTable extends QuickTable
|
||||
class IcingaUserGroupTable extends QuickTable
|
||||
{
|
||||
public function getColumns()
|
||||
{
|
@ -2,7 +2,7 @@
|
||||
|
||||
namespace Icinga\Module\Director\Objects;
|
||||
|
||||
class IcingaUsergroup extends IcingaObject
|
||||
class IcingaUserGroup extends IcingaObject
|
||||
{
|
||||
protected $table = 'icinga_usergroup';
|
||||
|
Loading…
x
Reference in New Issue
Block a user