ubn5/backend/rbac/items.php

55 lines
1.2 KiB
PHP

<?php
return [
'/administrator/*' => [
'type' => 2,
],
'/cms/*' => [
'type' => 2,
],
'pms_cms' => [
'type' => 2,
'description' => 'สิทธิ์ CMS',
'children' => [
'/cms/*',
],
],
'pms_administrator' => [
'type' => 2,
'description' => 'สิทธิ์ผู้ดูแลระบบ',
'children' => [
'/administrator/*',
],
],
'cms' => [
'type' => 1,
'description' => 'บทบาท CMS',
'children' => [
'pms_cms',
],
],
'administrator' => [
'type' => 1,
'description' => 'บทบาทผู้ดูแลระบบ',
'children' => [
'pms_administrator',
],
],
'/forum/*' => [
'type' => 2,
],
'pms_forum' => [
'type' => 2,
'description' => 'สิทธิ์กระดานข่าว',
'children' => [
'/forum/*',
],
],
'forum' => [
'type' => 1,
'description' => 'บทบาทจัดการกระดานข่าว',
'children' => [
'pms_forum',
],
],
];