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

28 lines
870 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\alipay\event;
class ShowPromotion
{
public function handle($params)
{
$data = [
'shop' => [
[
//插件名称
'name' => 'alipay',
//店铺端展示分类 shop:营销活动 member:互动营销
'show_type' => 'tool',
//展示主题
'title' => '芝麻GO',
//展示介绍
'description' => '芝麻GO、助力商家拉新、复购商家可让用户“先享权益承诺任务”',
//展示图标
'icon' => 'addon/alipay/zm.png',
//跳转链接
'url' => 'alipay://shop/zmgopay/lists',
]
]
];
return [];//$data;
}
}