shopxo/application/service/NavigationService.php

833 lines
29 KiB
PHP
Raw Normal View History

2018-12-28 18:58:37 +08:00
<?php
// +----------------------------------------------------------------------
// | ShopXO 国内领先企业级B2C免费开源电商系统
// +----------------------------------------------------------------------
2019-02-18 13:52:07 +08:00
// | Copyright (c) 2011~2019 http://shopxo.net All rights reserved.
2018-12-28 18:58:37 +08:00
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: Devil
// +----------------------------------------------------------------------
namespace app\service;
use think\Db;
2019-03-11 17:57:15 +08:00
use think\facade\Hook;
2018-12-28 18:58:37 +08:00
/**
* 导航服务层
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2016-12-01T21:51:08+0800
*/
class NavigationService
{
/**
2019-03-11 17:57:15 +08:00
* 获取导航
2018-12-28 18:58:37 +08:00
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2018-08-29
* @desc description
* @param [array] $params [输入参数]
*/
2019-03-11 17:57:15 +08:00
public static function Nav($params = [])
2018-12-28 18:58:37 +08:00
{
// 读取缓存数据
2018-12-29 13:13:09 +08:00
$header = cache(config('shopxo.cache_common_home_nav_header_key'));
$footer = cache(config('shopxo.cache_common_home_nav_footer_key'));
2018-12-28 18:58:37 +08:00
// 导航模型
$field = array('id', 'pid', 'name', 'url', 'value', 'data_type', 'is_new_window_open');
// 缓存没数据则从数据库重新读取,顶部菜单
if(empty($header))
{
$header = self::NavDataDealWith(Db::name('Navigation')->field($field)->where(array('nav_type'=>'header', 'is_show'=>1, 'pid'=>0))->order('sort')->select());
2018-12-28 18:58:37 +08:00
if(!empty($header))
{
2019-01-09 19:08:02 +08:00
foreach($header as &$v)
2018-12-28 18:58:37 +08:00
{
$v['items'] = self::NavDataDealWith(Db::name('Navigation')->field($field)->where(array('nav_type'=>'header', 'is_show'=>1, 'pid'=>$v['id']))->order('sort')->select());
2018-12-28 18:58:37 +08:00
}
}
2019-03-11 17:57:15 +08:00
// 大导航钩子
$hook_name = 'plugins_service_navigation_header_handle';
$ret = Hook::listen($hook_name, [
'hook_name' => $hook_name,
2019-03-15 17:46:35 +08:00
'is_backend' => true,
2019-03-11 17:57:15 +08:00
'params' => &$params,
'header' => &$header,
]);
2018-12-29 13:13:09 +08:00
cache(config('shopxo.cache_common_home_nav_header_key'), $header);
2018-12-28 18:58:37 +08:00
}
// 底部导航
if(empty($footer))
{
2019-04-09 18:28:48 +08:00
$footer = self::NavDataDealWith(Db::name('Navigation')->field($field)->where(array('nav_type'=>'footer', 'is_show'=>1, 'pid'=>0))->order('sort')->select());
2019-03-11 17:57:15 +08:00
if(!empty($footer))
{
foreach($footer as &$v)
{
$v['items'] = self::NavDataDealWith(Db::name('Navigation')->field($field)->where(array('nav_type'=>'footer', 'is_show'=>1, 'pid'=>$v['id']))->order('sort')->select());
}
}
// 底部导航钩子
$hook_name = 'plugins_service_navigation_footer_handle';
$ret = Hook::listen($hook_name, [
'hook_name' => $hook_name,
2019-03-15 17:46:35 +08:00
'is_backend' => true,
2019-03-11 17:57:15 +08:00
'params' => &$params,
'footer' => &$footer,
]);
2018-12-29 13:13:09 +08:00
cache(config('shopxo.cache_common_home_nav_footer_key'), $footer);
2018-12-28 18:58:37 +08:00
}
2019-03-11 17:57:15 +08:00
//print_r($header);
2018-12-28 18:58:37 +08:00
return [
'header' => $header,
'footer' => $footer,
];
}
/**
* [NavDataDealWith 导航数据处理]
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2017-02-05T21:36:46+0800
* @param [array] $data [需要处理的数据]
* @return [array] [处理好的数据]
*/
public static function NavDataDealWith($data)
2018-12-28 18:58:37 +08:00
{
if(!empty($data) && is_array($data))
{
foreach($data as $k=>$v)
{
// url处理
switch($v['data_type'])
{
// 文章分类
case 'article':
$v['url'] = MyUrl('index/article/index', ['id'=>$v['value']]);
break;
// 自定义页面
case 'customview':
$v['url'] = MyUrl('index/customview/index', ['id'=>$v['value']]);
break;
// 商品分类
case 'goods_category':
$v['url'] = MyUrl('index/search/index', ['category_id'=>$v['value']]);
break;
}
$data[$k] = $v;
}
}
return $data;
}
/**
* 获取导航列表
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2018-12-18
* @desc description
* @param [array] $params [输入参数]
*/
public static function NavList($params = [])
2018-12-28 18:58:37 +08:00
{
if(empty($params['nav_type']))
{
return [];
}
$field = 'id,pid,name,url,value,data_type,sort,is_show,is_new_window_open';
$data = self::NavDataDealWith(Db::name('Navigation')->field($field)->where(['nav_type'=>$params['nav_type'], 'pid'=>0])->order('sort')->select());
2018-12-28 18:58:37 +08:00
if(!empty($data))
{
foreach($data as &$v)
{
$v['items'] = self::NavDataDealWith(Db::name('Navigation')->field($field)->where(['nav_type'=>$params['nav_type'], 'pid'=>$v['id']])->order('sort')->select());
2018-12-28 18:58:37 +08:00
}
}
return $data;
}
/**
* 获取一级导航列表
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2018-12-18
* @desc description
* @param [array] $params [输入参数]
*/
public static function LevelOneNav($params = [])
2018-12-28 18:58:37 +08:00
{
if(empty($params['nav_type']))
{
return [];
}
return Db::name('Navigation')->field('id,name')->where(['is_show'=>1, 'pid'=>0, 'nav_type'=>$params['nav_type']])->select();
}
/**
* 导航保存
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2016-12-07T21:58:19+0800
* @param [array] $params [输入参数]
*/
public static function NavSave($params = [])
2018-12-28 18:58:37 +08:00
{
if(empty($params['data_type']))
{
return DataReturn('操作类型有误', -1);
}
// 请求类型
$p = [
[
'checked_type' => 'length',
'key_name' => 'sort',
'checked_data' => '4',
'error_msg' => '顺序 0~255 之间的数值',
],
[
'checked_type' => 'in',
'key_name' => 'is_show',
'checked_data' => [0,1],
'error_msg' => '是否显示范围值有误',
],
[
'checked_type' => 'in',
'key_name' => 'is_new_window_open',
'checked_data' => [0,1],
'error_msg' => '是否新窗口打开范围值有误',
]
];
switch($params['data_type'])
{
// 自定义导航
case 'custom':
$p = [
[
'checked_type' => 'in',
'key_name' => 'nav_type',
'checked_data' => ['header', 'footer'],
'error_msg' => '数据类型有误',
],
[
'checked_type' => 'length',
'key_name' => 'name',
'checked_data' => '2,16',
'error_msg' => '导航名称格式 2~16 个字符',
],
[
'checked_type' => 'fun',
'key_name' => 'url',
'checked_data' => 'CheckUrl',
'error_msg' => 'url格式有误',
],
];
break;
// 文章分类导航
case 'article':
$p = [
[
'checked_type' => 'length',
'key_name' => 'name',
'checked_data' => '2,16',
'is_checked' => 1,
'error_msg' => '导航名称格式 2~16 个字符',
],
[
'checked_type' => 'empty',
'key_name' => 'value',
'error_msg' => '文章选择有误',
],
];
break;
// 自定义页面导航
case 'customview':
$p = [
[
'checked_type' => 'length',
'key_name' => 'name',
'checked_data' => '2,16',
'is_checked' => 1,
'error_msg' => '导航名称格式 2~16 个字符',
],
[
'checked_type' => 'empty',
'key_name' => 'value',
'error_msg' => '自定义页面选择有误',
],
];
break;
// 商品分类导航
case 'goods_category':
$p = [
[
'checked_type' => 'length',
'key_name' => 'name',
2019-01-09 14:35:40 +08:00
'checked_data' => '2,16',
2018-12-28 18:58:37 +08:00
'is_checked' => 1,
'error_msg' => '导航名称格式 2~16 个字符',
],
[
'checked_type' => 'empty',
'key_name' => 'value',
'error_msg' => '商品分类选择有误',
],
];
break;
// 没找到
default :
return DataReturn('操作类型有误', -1);
}
// 参数
$ret = ParamsChecked($params, $p);
if($ret !== true)
{
return DataReturn($ret, -1);
}
// 保存数据
return self::NacDataSave($params);
2018-12-28 18:58:37 +08:00
}
/**
* 导航数据保存
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2017-02-05T20:12:30+0800
* @param [array] $params [输入参数]
*/
public static function NacDataSave($params = [])
2018-12-28 18:58:37 +08:00
{
// 非自定义导航数据处理
if(empty($params['name']))
{
switch($params['data_type'])
{
// 文章分类导航
case 'article':
$temp_name = Db::name('Article')->where(['id'=>$params['value']])->value('title');
break;
// 自定义页面导航
case 'customview':
$temp_name = Db::name('CustomView')->where(['id'=>$params['value']])->value('title');
break;
// 商品分类导航
case 'goods_category':
$temp_name = Db::name('GoodsCategory')->where(['id'=>$params['value']])->value('name');
break;
}
// 只截取16个字符
2018-12-29 13:13:09 +08:00
$params['name'] = mb_substr($temp_name, 0, 16, config('shopxo.default_charset'));
2018-12-28 18:58:37 +08:00
}
// 清除缓存
cache(config('cache_common_home_nav_'.$params['nav_type'].'_key'), null);
// 数据
$data = [
'pid' => isset($params['pid']) ? intval($params['pid']) : 0,
'value' => isset($params['value']) ? intval($params['value']) : 0,
'name' => $params['name'],
'url' => isset($params['url']) ? $params['url'] : '',
'nav_type' => $params['nav_type'],
'data_type' => $params['data_type'],
'sort' => intval($params['sort']),
'is_show' => intval($params['is_show']),
'is_new_window_open' => intval($params['is_new_window_open']),
];
// id为空则表示是新增
if(empty($params['id']))
{
$data['add_time'] = time();
if(Db::name('Navigation')->insertGetId($data) > 0)
{
// 清除缓存
cache(config('cache_common_home_nav_'.$params['nav_type'].'_key'), null);
return DataReturn('新增成功', 0);
} else {
return DataReturn('新增失败', -100);
}
} else {
$data['upd_time'] = time();
if(Db::name('Navigation')->where(['id'=>intval($params['id'])])->update($data))
{
// 清除缓存
cache(config('cache_common_home_nav_'.$params['nav_type'].'_key'), null);
return DataReturn('编辑成功', 0);
} else {
return DataReturn('编辑失败或数据未改变', -100);
}
}
}
/**
* 导航删除
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2018-12-18
* @desc description
* @param [array] $params [输入参数]
*/
public static function NavDelete($params = [])
2018-12-28 18:58:37 +08:00
{
// 请求参数
$p = [
[
'checked_type' => 'empty',
'key_name' => 'id',
'error_msg' => '操作id有误',
],
];
$ret = ParamsChecked($params, $p);
if($ret !== true)
{
return DataReturn($ret, -1);
}
// 启动事务
Db::startTrans();
// 删除操作
if(Db::name('Navigation')->where(['id'=>$params['id']])->delete() !== false && Db::name('Navigation')->where(['pid'=>$params['id']])->delete() !== false)
{
// 提交事务
Db::commit();
// 清除缓存
2018-12-29 13:13:09 +08:00
cache(config('shopxo.cache_common_home_nav_header_key'), null);
cache(config('shopxo.cache_common_home_nav_footer_key'), null);
2018-12-28 18:58:37 +08:00
return DataReturn('删除成功');
}
// 回滚事务
Db::rollback();
return DataReturn('删除失败或资源不存在', -100);
}
/**
* 状态更新
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2016-12-06T21:31:53+0800
* @param [array] $params [输入参数]
*/
public static function NavStatusUpdate($params = [])
2018-12-28 18:58:37 +08:00
{
// 请求参数
$p = [
[
'checked_type' => 'empty',
'key_name' => 'id',
'error_msg' => '操作id有误',
],
[
'checked_type' => 'in',
'key_name' => 'state',
'checked_data' => [0,1],
'error_msg' => '状态有误',
],
];
$ret = ParamsChecked($params, $p);
if($ret !== true)
{
return DataReturn($ret, -1);
}
// 数据更新
if(Db::name('Navigation')->where(['id'=>intval($params['id'])])->update(['is_show'=>intval($params['state'])]))
{
// 清除缓存
2018-12-29 13:13:09 +08:00
cache(config('shopxo.cache_common_home_nav_header_key'), null);
cache(config('shopxo.cache_common_home_nav_footer_key'), null);
2018-12-28 18:58:37 +08:00
return DataReturn('编辑成功');
}
return DataReturn('编辑失败或数据未改变', -100);
}
2019-03-15 17:46:35 +08:00
/**
* 获取前端顶部右侧导航
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2019-03-15
* @desc description
* @param array $params [description]
*/
public static function HomeHavTopRight($params = [])
{
$common_cart_total = 0;
$common_message_total = -1;
if(!empty($params['user']))
{
// 购物车商品总数
$common_cart_total = BuyService::UserCartTotal(['user'=>$params['user']]);
$common_cart_total = ($common_cart_total > 99) ? '99+' : $common_cart_total;
// 未读消息总数
$message_params = ['user'=>$params['user'], 'is_more'=>1, 'is_read'=>0, 'user_type'=>'user'];
$common_message_total = MessageService::UserMessageTotal($message_params);
$common_message_total = ($common_message_total > 99) ? '99+' : (($common_message_total <= 0) ? -1 : $common_message_total);
}
// 列表
$data = [
[
'name' => '个人中心',
'is_login' => 1,
'badge' => null,
'icon' => 'am-icon-user',
'url' => MyUrl('index/user/index'),
'items' => [],
],
[
2019-04-28 18:31:39 +08:00
'name' => '我的商城',
2019-03-15 17:46:35 +08:00
'is_login' => 1,
'badge' => null,
'icon' => 'am-icon-cube',
'url' => '',
'items' => [
[
'name' => '我的订单',
'url' => MyUrl('index/order/index'),
],
],
],
[
'name' => '我的收藏',
'is_login' => 1,
'badge' => null,
'icon' => 'am-icon-heart',
'url' => '',
'items' => [
[
'name' => '商品收藏',
'url' => MyUrl('index/userfavor/goods'),
],
],
],
[
'name' => '购物车',
'is_login' => 1,
'badge' => $common_cart_total,
'icon' => 'am-icon-shopping-cart',
'url' => MyUrl('index/cart/index'),
'items' => [],
],
[
'name' => '消息',
'is_login' => 1,
'badge' => $common_message_total,
'icon' => 'am-icon-bell',
'url' => MyUrl('index/message/index'),
'items' => [],
],
];
// 顶部小导航右侧钩子
$hook_name = 'plugins_service_header_navigation_top_right_handle';
$ret = Hook::listen($hook_name, [
'hook_name' => $hook_name,
'is_backend' => true,
'params' => &$params,
'data' => &$data,
]);
return $data;
}
/**
* 用户中心资料修改展示字段
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2019-03-15
* @desc description
* @param array $params [description]
*/
public static function UsersPersonalShowFieldList($params = [])
{
2019-05-26 01:32:21 +08:00
// is_ext 扩展数据 1, key不存在用户字段中可使用该扩展
// name 显示名称
// value 扩展自定义值
// tips html提示操作内容
2019-03-15 17:46:35 +08:00
$data = [
'avatar' => [
'name' => '头像',
'tips' => '<a href="javascript:;" data-am-modal="{target:\'#user-avatar-popup\'}">修改</a>'
],
'nickname' => [
'name' => '昵称'
],
'gender_text' => [
'name' => '性别'
],
'birthday_text' => [
'name' => '生日'
],
'mobile_security' => [
'name' => '手机号码',
'tips' => '<a href="'.MyUrl('index/safety/mobileinfo').'">修改</a>'
],
'email_security' => [
'name' => '电子邮箱',
'tips' => '<a href="'.MyUrl('index/safety/emailinfo').'">修改</a>'
],
'add_time_text' => [
'name' => '注册时间'
],
'upd_time_text' => [
2019-05-26 01:32:21 +08:00
'name' => '更新时间'
2019-03-15 17:46:35 +08:00
],
];
// 用户中心资料修改展示字段钩子
$hook_name = 'plugins_service_users_personal_show_field_list_handle';
$ret = Hook::listen($hook_name, [
'hook_name' => $hook_name,
'is_backend' => true,
'params' => &$params,
'data' => &$data,
]);
return $data;
}
/**
* 用户安全项列表
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2019-03-15
* @desc description
* @param array $params [description]
*/
public static function UsersSafetyPanelList($params = [])
{
$data = [
[
'title' => '登录密码',
'msg' => '互联网存在被盗风险,建议您定期更改密码以保护安全。',
'url' => MyUrl('index/safety/loginpwdinfo'),
'type' => 'loginpwd',
],
[
'title' => '手机号码',
'no_msg' => '您还没有绑定手机号码',
'ok_msg' => '已绑定手机 #accounts#',
'tips' => '可用于登录,密码找回,账户安全管理校验,接受账户提醒通知。',
'url' => MyUrl('index/safety/mobileinfo'),
'type' => 'mobile',
],
[
'title' => '电子邮箱',
'no_msg' => '您还没有绑定电子邮箱',
'ok_msg' => '已绑定电子邮箱 #accounts#',
'tips' => '可用于登录,密码找回,账户安全管理校验,接受账户提醒邮件。',
'url' => MyUrl('index/safety/emailinfo'),
'type' => 'email',
],
];
// 用户安全项列表钩子
$hook_name = 'plugins_service_users_safety_panel_list_handle';
$ret = Hook::listen($hook_name, [
'hook_name' => $hook_name,
'is_backend' => true,
'params' => &$params,
'data' => &$data,
]);
return $data;
}
/**
* 用户中心左侧菜单
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2019-03-15
* @desc description
* @param array $params [description]
*/
public static function UsersCenterLeftList($params = [])
{
2019-04-11 18:27:50 +08:00
// name 名称
// url 页面地址
// is_show 是否显示0否, 1是
// contains 包含的子页面(包括自身)
// icon icon类
// item 二级数据
2019-06-12 22:07:26 +08:00
// is_system 是否系统内置菜单0否, 1是扩展数据可空或0
2019-04-11 18:27:50 +08:00
// 菜单列表
2019-03-15 17:46:35 +08:00
$data = [
2019-04-28 18:31:39 +08:00
'center' => [
2019-03-15 17:46:35 +08:00
'name' => '个人中心',
2019-04-11 18:27:50 +08:00
'url' => MyUrl('index/user/index'),
2019-03-15 17:46:35 +08:00
'is_show' => 1,
2019-04-11 18:27:50 +08:00
'contains' => ['userindex'],
2019-03-15 17:46:35 +08:00
'icon' => 'am-icon-home',
2019-06-12 22:07:26 +08:00
'is_system' => 1,
2019-03-15 17:46:35 +08:00
],
2019-04-28 18:31:39 +08:00
'business' => [
'name' => '业务管理',
2019-03-15 17:46:35 +08:00
'is_show' => 1,
'icon' => 'am-icon-cube',
2019-06-12 22:07:26 +08:00
'is_system' => 1,
2019-03-15 17:46:35 +08:00
'item' => [
[
'name' => '订单管理',
2019-04-11 18:27:50 +08:00
'url' => MyUrl('index/order/index'),
2019-03-15 17:46:35 +08:00
'is_show' => 1,
2019-04-11 18:27:50 +08:00
'contains' => ['orderindex', 'orderdetail', 'ordercomments'],
2019-03-15 17:46:35 +08:00
'icon' => 'am-icon-th-list',
2019-06-12 22:07:26 +08:00
'is_system' => 1,
2019-03-15 17:46:35 +08:00
],
2019-05-24 13:57:10 +08:00
[
'name' => '订单售后',
'url' => MyUrl('index/orderaftersale/index'),
'is_show' => 1,
'contains' => ['orderaftersaleindex', 'orderaftersaleaftersale'],
'icon' => 'am-icon-puzzle-piece',
2019-06-12 22:07:26 +08:00
'is_system' => 1,
2019-05-24 13:57:10 +08:00
],
2019-03-15 17:46:35 +08:00
[
'name' => '我的收藏',
2019-04-11 18:27:50 +08:00
'url' => MyUrl('index/userfavor/goods'),
'contains' => ['userfavorgoods'],
2019-03-15 17:46:35 +08:00
'is_show' => 1,
'icon' => 'am-icon-heart-o',
2019-06-12 22:07:26 +08:00
'is_system' => 1,
2019-03-15 17:46:35 +08:00
],
]
],
2019-04-28 18:31:39 +08:00
'base' => [
2019-03-15 17:46:35 +08:00
'name' => '资料管理',
'is_show' => 1,
'icon' => 'am-icon-user',
2019-06-12 22:07:26 +08:00
'is_system' => 1,
2019-03-15 17:46:35 +08:00
'item' => [
[
'name' => '个人资料',
2019-04-11 18:27:50 +08:00
'url' => MyUrl('index/personal/index'),
'contains' => ['personalindex', 'personalsaveinfo'],
2019-03-15 17:46:35 +08:00
'is_show' => 1,
'icon' => 'am-icon-gear',
2019-06-12 22:07:26 +08:00
'is_system' => 1,
2019-03-15 17:46:35 +08:00
],
[
'name' => '我的地址',
2019-04-11 18:27:50 +08:00
'url' => MyUrl('index/useraddress/index'),
'contains' => ['useraddressindex', 'useraddresssaveinfo'],
2019-03-15 17:46:35 +08:00
'is_show' => 1,
'icon' => 'am-icon-street-view',
2019-06-12 22:07:26 +08:00
'is_system' => 1,
2019-03-15 17:46:35 +08:00
],
[
'name' => '安全设置',
2019-04-11 18:27:50 +08:00
'url' => MyUrl('index/safety/index'),
'contains' => ['safetyindex', 'safetyloginpwdinfo', 'safetymobileinfo', 'safetynewmobileinfo', 'safetyemailinfo', 'safetynewemailinfo'],
2019-03-15 17:46:35 +08:00
'is_show' => 1,
'icon' => 'am-icon-user-secret',
2019-06-12 22:07:26 +08:00
'is_system' => 1,
2019-03-15 17:46:35 +08:00
],
[
'name' => '我的消息',
2019-04-11 18:27:50 +08:00
'url' => MyUrl('index/message/index'),
'contains' => ['messageindex'],
2019-03-15 17:46:35 +08:00
'is_show' => 1,
'icon' => 'am-icon-bell-o',
2019-06-12 22:07:26 +08:00
'is_system' => 1,
2019-03-15 17:46:35 +08:00
],
[
'name' => '我的足迹',
2019-04-11 18:27:50 +08:00
'url' => MyUrl('index/usergoodsbrowse/index'),
'contains' => ['usergoodsbrowseindex'],
2019-03-15 17:46:35 +08:00
'is_show' => 1,
'icon' => 'am-icon-lastfm',
2019-06-12 22:07:26 +08:00
'is_system' => 1,
2019-03-15 17:46:35 +08:00
],
[
'name' => '问答/留言',
2019-04-11 18:27:50 +08:00
'url' => MyUrl('index/answer/index'),
'contains' => ['answerindex'],
2019-03-15 17:46:35 +08:00
'is_show' => 1,
'icon' => 'am-icon-question',
2019-06-12 22:07:26 +08:00
'is_system' => 1,
2019-03-15 17:46:35 +08:00
],
]
],
2019-04-28 18:31:39 +08:00
'property' => [
2019-04-24 18:50:27 +08:00
'name' => '财产中心',
'is_show' => 1,
'icon' => 'am-icon-trophy',
2019-06-12 22:07:26 +08:00
'is_system' => 1,
2019-04-24 18:50:27 +08:00
'item' => [
[
'name' => '我的积分',
'url' => MyUrl('index/userintegral/index'),
'contains' => ['userintegralindex'],
'is_show' => 1,
'icon' => 'am-icon-fire',
2019-06-12 22:07:26 +08:00
'is_system' => 1,
2019-04-24 18:50:27 +08:00
],
]
],
2019-04-28 18:31:39 +08:00
'logout' => [
2019-04-11 18:27:50 +08:00
'name' => '安全退出',
'url' => MyUrl('index/user/logout'),
'contains' => ['userlogout'],
'is_show' => 1,
'icon' => 'am-icon-power-off',
2019-06-12 22:07:26 +08:00
'is_system' => 1,
2019-04-11 18:27:50 +08:00
],
2019-03-15 17:46:35 +08:00
];
// 用户中心左侧菜单钩子
$hook_name = 'plugins_service_users_center_left_menu_handle';
$ret = Hook::listen($hook_name, [
'hook_name' => $hook_name,
'is_backend' => true,
'params' => &$params,
'data' => &$data,
]);
return $data;
}
2018-12-28 18:58:37 +08:00
}
?>