jh-admin/addon/supply/event/ShowPromotion.php

28 lines
914 B
PHP
Raw 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
namespace addon\supply\event;
class ShowPromotion
{
public function handle()
{
$data = [
'shop' => [
[
//插件名称
'name' => 'supply',
//展示分类根据平台端设置admin平台营销shop店铺营销member:会员营销, tool:应用工具)
'show_type' => 'tool',
//展示主题
'title' => '精选供应链',
//展示介绍
'description' => '提供更丰富的货品,精选货品中心,无人直播,一件代发',
//展示图标
'icon' => 'addon/supply/icon.png',
//跳转链接
'url' => 'supply://shop/supplyorder/lists',
]
]
];
return $data;
}
}