47 lines
1.2 KiB
PHP
47 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* ThinkShop商城系统 - 团队十年电商经验汇集巨献!
|
|
* =========================================================
|
|
* Copy right 2019-2029 成都云之牛科技有限公司, 保留所有权利。
|
|
* ----------------------------------------------
|
|
* 官方网址: https://www.cdcloudshop.com
|
|
|
|
* =========================================================
|
|
*/
|
|
|
|
namespace addon\futures\event;
|
|
|
|
/**
|
|
* 活动展示
|
|
*/
|
|
class ShowPromotion
|
|
{
|
|
|
|
/**
|
|
* 活动展示
|
|
* @return array
|
|
*/
|
|
public function handle()
|
|
{
|
|
$data = [
|
|
'shop' => [
|
|
[
|
|
//插件名称
|
|
'name' => 'futures',
|
|
//店铺端展示分类 shop:营销活动 member:互动营销
|
|
'show_type' => 'shop',
|
|
//展示主题
|
|
'title' => '交易市场',
|
|
//展示介绍
|
|
'description' => '交易市场',
|
|
//展示图标
|
|
'icon' => 'addon/futures/icon.png',
|
|
//跳转链接
|
|
'url' => 'futures://shop/futures/index',
|
|
]
|
|
]
|
|
|
|
];
|
|
return $data;
|
|
}
|
|
} |