47 lines
1.2 KiB
PHP
47 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* B2B商城系统 - 团队十年电商经验汇集巨献!
|
|
* =========================================================
|
|
* Copy right 2023-2046 四川正今科技有限公司, 保留所有权利。
|
|
* ----------------------------------------------
|
|
* 官方网址: https://www.viewsphp.com
|
|
|
|
* =========================================================
|
|
*/
|
|
|
|
namespace addon\fenxiao\event;
|
|
|
|
/**
|
|
* 活动展示
|
|
*/
|
|
class ShowPromotion
|
|
{
|
|
|
|
/**
|
|
* 活动展示
|
|
* @return array
|
|
*/
|
|
public function handle()
|
|
{
|
|
$data = [
|
|
'shop' => [
|
|
[
|
|
//插件名称
|
|
'name' => 'fenxiao',
|
|
//店铺端展示分类 shop:营销活动 member:互动营销
|
|
'show_type' => 'member',
|
|
//展示主题
|
|
'title' => '分销',
|
|
//展示介绍
|
|
'description' => '让客户为您推广销售',
|
|
//展示图标
|
|
'icon' => 'addon/fenxiao/icon.png',
|
|
//跳转链接
|
|
'url' => 'fenxiao://shop/fenxiao/index',
|
|
]
|
|
]
|
|
|
|
];
|
|
return $data;
|
|
}
|
|
} |