Some checks are pending
Module sub-split / Sub-split (push) Waiting to run
- Base: wintercms/winter branch 1.2 (full framework) - Theme vivespos: Canvas 7 + Bootstrap 5 CDN, custom CSS - Layout: deferred GTM/GA4 tracking, JSON-LD SoftwareApplication - Partials: hero (offline-first), features, modes (offline/nube toggle), screenshots, pricing (3 planes), comparison, FAQ, CTA - Plugin VivesPOS.Site with ContactForm - Dockerfile: PHP 8.2 Apache, port 80, healthcheck - Added winter/wn-pages, blog, sitemap, seo plugins - Active theme set to vivespos
52 lines
1.2 KiB
PHP
52 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Backend\Controllers;
|
|
|
|
use Backend\Classes\Controller;
|
|
use Backend\Facades\BackendMenu;
|
|
use System\Classes\SettingsManager;
|
|
|
|
/**
|
|
* Backend user groups controller
|
|
*
|
|
* @package winter\wn-backend-module
|
|
* @author Alexey Bobkov, Samuel Georges
|
|
*
|
|
*/
|
|
class UserRoles extends Controller
|
|
{
|
|
/**
|
|
* @var array Extensions implemented by this controller.
|
|
*/
|
|
public $implement = [
|
|
\Backend\Behaviors\FormController::class,
|
|
\Backend\Behaviors\ListController::class,
|
|
\Backend\Behaviors\RelationController::class,
|
|
];
|
|
|
|
/**
|
|
* @var array Permissions required to view this page.
|
|
*/
|
|
public $requiredPermissions = ['backend.manage_users'];
|
|
|
|
/**
|
|
* Constructor.
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
|
|
BackendMenu::setContext('Winter.System', 'system', 'users');
|
|
SettingsManager::setContext('Winter.System', 'administrators');
|
|
|
|
/*
|
|
* Only super users can access
|
|
*/
|
|
$this->bindEvent('page.beforeDisplay', function () {
|
|
if (!$this->user->isSuperUser()) {
|
|
abort(403);
|
|
}
|
|
});
|
|
}
|
|
}
|