test_lgq/niucloud/core/dict/UniappPages.php
2024-01-24 17:36:08 +08:00

45 lines
1.5 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | Niucloud-admin 企业快速开发的saas管理平台
// +----------------------------------------------------------------------
// | 官方网址https://www.niucloud-admin.com
// +----------------------------------------------------------------------
// | niucloud团队 版权所有 开源版本可自由商用
// +----------------------------------------------------------------------
// | Author: Niucloud Team
// +----------------------------------------------------------------------
namespace core\dict;
use app\service\admin\addon\AddonService;
class UniappPages extends BaseDict
{
/**
* 系统uniapp页面
* @param array $data //系统
* @return array|mixed
*/
public function load(array $data)
{
$addons = (new AddonService())->getAddonKeysBySiteId(request()->siteId());
$page_files = [];
foreach ($addons as $v) {
$page_path = $this->getAddonDictPath($v) . "diy" . DIRECTORY_SEPARATOR . "pages.php";
if (is_file($page_path)) {
$page_files[] = $page_path;
}
}
$page_files_data = $this->loadFiles($page_files);
$pages = $data;
foreach ($page_files_data as $file_data) {
if (empty($pages)) {
$pages = $file_data;
} else {
$pages = array_merge2($pages, $file_data);
}
}
return $pages;
}
}