Fix #2333 add lock icon in menu list to indicate that access is restricted

This commit is contained in:
Kijin Sung 2024-05-04 21:17:00 +09:00
parent 0a459eb528
commit ebae28d5d3
2 changed files with 20 additions and 4 deletions

View file

@ -2174,6 +2174,7 @@ class MenuAdminController extends Menu
"href" => (%s ? %s : ""),
"url" => (%s ? %s : ""),
"is_shortcut" => %s,
"is_restricted" => %s,
"icon" => %s,
"class" => %s,
"desc" => %s,
@ -2196,6 +2197,7 @@ class MenuAdminController extends Menu
$group_check_code,
var_export($url, true),
var_export($is_shortcut, true),
var_export(!empty($node->group_srls), true),
var_export($icon, true),
var_export($class, true),
var_export($desc, true),