mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 09:18:54 +00:00
18 lines
337 B
PHP
18 lines
337 B
PHP
<?php
|
|
|
|
require_once dirname(__DIR__).DIRECTORY_SEPARATOR.'smarty.php';
|
|
|
|
use App\Models\UserRole;
|
|
|
|
$page = new AdminPage();
|
|
|
|
$page->title = 'User Role List';
|
|
|
|
//get the user roles
|
|
$userroles = UserRole::getRoles();
|
|
|
|
$page->smarty->assign('userroles', $userroles);
|
|
|
|
$page->content = $page->smarty->fetch('role-list.tpl');
|
|
$page->render();
|