kokjan/backend/rbac/items.php

67 lines
1.5 KiB
PHP
Raw Permalink Normal View History

2026-02-25 06:59:34 +00:00
<?php
2026-02-25 06:59:34 +00:00
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',
],
],
'/gis/*' => [
'type' => 2,
'description' => 'Access to all GIS module actions',
],
'gis' => [
'type' => 1,
'description' => 'GIS Data Manager',
'children' => [
'/gis/*',
],
],
2026-02-25 06:59:34 +00:00
];