<?php/*** 积木云渲染器* @package XbCode.0* @author 楚羽幽 <958416459@qq.com>* @license Apache License 2.0* @link http://www.xbcode.net* @document http://doc.xbcode.net*/namespace plugin\xbCode\api;use Exception;use plugin\xbCode\app\model\AdminRule;/*** 菜单数据接口* @copyright 贵州积木云网络科技有限公司* @author 楚羽幽 958416459@qq.com*/class MenuData{/*** 递归获取子菜单ID* @param int $id* @return array* @copyright 贵州积木云网络科技有限公司* @author 楚羽幽 958416459@qq.com*/public static function getChildrenIds(int $id){$ids = [$id];$children = AdminRule::where('pid', $id)->where('state', '20')->column('id');foreach ($children as $child) {$ids = array_merge($ids, self::getChildrenIds($child));}return $ids;}/*** 验证菜单数据* @param array $data* @return void* @copyright 贵州积木云网络科技有限公司* @author 楚羽幽 958416459@qq.com*/public static function validateMenus(array $data){foreach ($data as $value) {if (empty($value['title'])) {throw new Exception('菜单标题不能为空');}if (empty($value['path'])) {throw new Exception('菜单路径不能为空');}if (empty($value['is_show'])) {throw new Exception('菜单是否显示不能为空');}if (!isset($value['type'])) {throw new Exception('菜单类型不能为空');}if (!empty($value['children']) && is_array($value['children'])) {self::validateMenus($value['children']);}}}}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。