test_lgq/niucloud/core/template/BaseTemplate.php

61 lines
1.4 KiB
PHP
Raw Permalink Normal View History

2024-01-24 17:36:08 +08:00
<?php
// +----------------------------------------------------------------------
// | Niucloud-admin 企业快速开发的saas管理平台
// +----------------------------------------------------------------------
// | 官方网址https://www.niucloud-admin.com
// +----------------------------------------------------------------------
// | niucloud团队 版权所有 开源版本可自由商用
// +----------------------------------------------------------------------
// | Author: Niucloud Team
// +----------------------------------------------------------------------
namespace core\template;
use core\loader\Storage;
/**
* Class BaseTemplate
* @package
*/
abstract class BaseTemplate extends Storage
{
/**
* 初始化
* @param array $config
* @return void
*/
protected function initialize(array $config = [])
{
}
/**
* 发送模板消息
* @return mixed
*/
abstract protected function send(array $data);
/**
* 增加模板消息
* @param array $data
* @return mixed
*/
abstract protected function addTemplate(array $data);
/**
* 删除消息模板
* @param array $data
* @return mixed
*/
abstract protected function delete(array $data);
/**
* 获取消息模板列表
* @return mixed
*/
abstract protected function get();
}