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

34 lines
1.2 KiB
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
/**
* SaaSMall商城系统 - 团队十年电商经验汇集巨献!
* =========================================================
* Copy right 2019-2029 成都SAAS云科技有限公司, 保留所有权利。
* ----------------------------------------------
* 官方网址: https://www.gobuysaas.com
* =========================================================
*/
namespace addon\commission\event;
class ShowPromotion{
public function handle(){
return [
'shop' => [
[
//插件名称
'name' => 'commission',
//展示分类根据平台端设置admin平台营销shop店铺营销member:会员营销, tool:应用工具)
'show_type' => 'shop',
//展示主题
'title' => '平台抽成',
//展示介绍
'description' => '平台抽取订单部分金额,分配给指定角色!',
//展示图标
'icon' => 'addon/commission/icon.png',
//跳转链接
'url' => 'commission://shop/index/index',
]
]
];
}
}