admin/addon/servicer/event/ShowPromotion.php

49 lines
1.3 KiB
PHP
Raw Permalink 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
/**
* ThinkShop商城系统 - 团队十年电商经验汇集巨献!
* =========================================================
* Copy right 2019-2029 山西牛酷信息科技有限公司, 保留所有权利。
* ----------------------------------------------
* 官方网址: https://www.cdcloudshop.com
* =========================================================
*/
declare(strict_types=1);
namespace addon\servicer\event;
/**
* 活动展示
*/
class ShowPromotion
{
/**
* 活动展示
* @return array
*/
public function handle()
{
$data = [
'shop' => [
[
//插件名称
'name' => 'servicer',
//展示分类根据平台端设置shop店铺营销member:会员营销, tool:应用工具)
'show_type' => 'tool',
//展示主题
'title' => '客服',
//展示介绍
'description' => '在线与客户进行沟通',
//展示图标
'icon' => 'addon/servicer/icon.png',
//跳转链接
'url' => 'servicer://shop/servicer/index',
]
]
];
return $data;
}
}