admin/addon/cossms/event/ShowPromotion.php

65 lines
2.3 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
/**
* SAAS应用系统 --- 十年开发经验汇集巨献!
* ==========================================================
* Copy right 2020-2050 成都众联思索科技有限公司,保留所有权利。
* ----------------------------------------------------------
* 官方网址: https://www.zoomtk.com
* 这不是自由软件!未经允许不得用于商业目或程序代码摘取及修改。
* 任何企业和个人不允许对程序代码以任何形式任何目的再发布传播。
* 唯一发布渠道www.zoomtk.com;非官方渠道统一视为侵权行为。
* ==========================================================
*/
namespace addon\cossms\event;
/**
* 店铺活动
*/
class ShowPromotion
{
/**
* 活动展示
*
* @return multitype:number unknown
*/
public function handle()
{
$data = [
'admin' => [
[
//插件名称
'name' => 'cossms',
//展示分类根据平台端设置admin平台营销shop店铺营销member:会员营销, tool:应用工具)
'show_type' => 'tool',
//展示主题
'title' => '腾讯COS短信',
//展示介绍
'description' => '腾讯云短信管理',
//展示图标
'icon' => 'addon/cossms/icon.png',
//跳转链接
'url' => 'cossms://admin/sms/config',
]
],
'shop' => [
[
//插件名称
'name' => 'cossms',
//展示分类根据平台端设置admin平台营销shop店铺营销member:会员营销, tool:应用工具)
'show_type' => 'tool',
//展示主题
'title' => '腾讯COS短信',
//展示介绍
'description' => '腾讯云短信管理',
//展示图标
'icon' => 'addon/cossms/icon.png',
//跳转链接
'url' => 'cossms://shop/sms/config',
]
]
];
return $data;
}
}