add
This commit is contained in:
38
app/api/common.php
Normal file
38
app/api/common.php
Normal file
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
use ba\Filesystem;
|
||||
use app\admin\library\module\Server;
|
||||
|
||||
if (!function_exists('get_account_verification_type')) {
|
||||
|
||||
/**
|
||||
* 获取可用的账户验证方式
|
||||
* 用于:用户找回密码|用户注册
|
||||
* @return string[] email=电子邮件,mobile=手机短信验证
|
||||
* @throws Throwable
|
||||
*/
|
||||
function get_account_verification_type(): array
|
||||
{
|
||||
$types = [];
|
||||
|
||||
// 电子邮件,检查后台系统邮件配置是否全部填写
|
||||
$sysMailConfig = get_sys_config('', 'mail');
|
||||
$configured = true;
|
||||
foreach ($sysMailConfig as $item) {
|
||||
if (!$item) {
|
||||
$configured = false;
|
||||
}
|
||||
}
|
||||
if ($configured) {
|
||||
$types[] = 'email';
|
||||
}
|
||||
|
||||
// 手机号,检查是否安装短信模块
|
||||
$sms = Server::getIni(Filesystem::fsFit(root_path() . 'modules/sms/'));
|
||||
if ($sms && $sms['state'] == 1) {
|
||||
$types[] = 'mobile';
|
||||
}
|
||||
|
||||
return $types;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user