51 lines
1.1 KiB
PHP
Executable File
51 lines
1.1 KiB
PHP
Executable File
<?php namespace RainLab\User\Controllers;
|
|
|
|
use Flash;
|
|
use BackendMenu;
|
|
use Backend\Classes\Controller;
|
|
use RainLab\User\Models\UserGroup;
|
|
|
|
/**
|
|
* User Groups Back-end Controller
|
|
*/
|
|
class UserGroups extends Controller
|
|
{
|
|
/**
|
|
* @var array Extensions implemented by this controller.
|
|
*/
|
|
public $implement = [
|
|
\Backend\Behaviors\FormController::class,
|
|
\Backend\Behaviors\ListController::class
|
|
];
|
|
|
|
/**
|
|
* @var array `FormController` configuration.
|
|
*/
|
|
public $formConfig = 'config_form.yaml';
|
|
|
|
/**
|
|
* @var array `ListController` configuration.
|
|
*/
|
|
public $listConfig = 'config_list.yaml';
|
|
|
|
/**
|
|
* @var array `RelationController` configuration, by extension.
|
|
*/
|
|
public $relationConfig;
|
|
|
|
/**
|
|
* @var array Permissions required to view this page.
|
|
*/
|
|
public $requiredPermissions = ['rainlab.users.access_groups'];
|
|
|
|
/**
|
|
* Constructor.
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
|
|
BackendMenu::setContext('RainLab.User', 'user', 'usergroups');
|
|
}
|
|
}
|