vr-shopxo-source/app/admin/form/Navigation.php

166 lines
6.4 KiB
PHP

<?php
// +----------------------------------------------------------------------
// | ShopXO 国内领先企业级B2C免费开源电商系统
// +----------------------------------------------------------------------
// | Copyright (c) 2011~2099 http://shopxo.net All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( https://opensource.org/licenses/mit-license.php )
// +----------------------------------------------------------------------
// | Author: Devil
// +----------------------------------------------------------------------
namespace app\admin\form;
/**
* 导航动态表格
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2020-06-15
* @desc description
*/
class Navigation
{
// 基础条件
public $condition_base = [];
/**
* 入口
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2020-06-15
* @desc description
* @param [array] $params [输入参数]
*/
public function Run($params = [])
{
// 导航类型
$search_params = ['type' => empty($params['type']) ? 'header' : trim($params['type'])];
// 是否主题管理
if(isset($params['is_theme_data_admin']) && $params['is_theme_data_admin'] == 1)
{
$search_params['is_theme_data_admin'] = 1;