jh-admin/addon/alisms/event/EnableSms.php

40 lines
1.4 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
/**
* SaaSMall商城系统 - 团队十年电商经验汇集巨献!
* =========================================================
* Copy right 2019-2029 上海牛之云网络科技有限公司, 保留所有权利。
* ----------------------------------------------
* 官方网址: https://www.gobuysaas.com
* =========================================================
*/
namespace addon\alisms\event;
use addon\alisms\model\Config;
/**
* 查询启用的短信插件
*/
class EnableSms
{
/**
* 短信发送方式方式及配置
*/
public function handle($param)
{
$info = array (
"sms_type" => "alisms",
"sms_type_name" => "阿里云短信",
"edit_url" => "alisms://shop/sms/config",
"shop_url" => "alisms://shop/sms/config",
"desc" => "阿里云短信服务Short Message Service支持国内和国际快速发送验证码、短信通知和推广短信服务范围覆盖全球200多个国家和地区。国内短信支持三网合一专属通道与工信部携号转网平台实时互联。电信级运维保障实时监控自动切换到达率高达99%。"
);
$config_model = new Config();
$config = $config_model->getSmsConfig($param[ 'site_id' ]);
if ($config[ 'data' ][ 'is_use' ] == 1) {
return $info;
}
}
}