信呼OA版本v2.3.8

This commit is contained in:
雨中磐石
2022-08-14 16:47:40 +08:00
parent 4640677d27
commit e3fcd913e3
1405 changed files with 133635 additions and 73 deletions

View File

@@ -0,0 +1,57 @@
<?php
/**
* 来自:信呼开发团队
* 作者:磐石(rainrock)
* 网址http://www.rockoa.com/
* 自己短信服务
* 此文件放到include/chajian/mysmsChajian.php 下
* 开发帮助地址http://www.rockoa.com/view_mysms.html
*/
class mysmsChajian extends Chajian{
/**
* 短信模版写这里的
*/
protected function initChajian()
{
$mobian['defyzm'] = '您短信验证码为:#code#请勿将验证码提供给他人5分钟内有效。';
$mobian['defsucc'] = '您提交单据(#modename#,单号:#sericnum#)已全部处理完成,可登录系统查看详情。';
$mobian['default'] = '您有单据(#modename#,单号:#sericnum#)需要处理,请登录系统及时去处理。';
$mobian['birthday'] = '尊敬的#name#,今天是#dt#,农历#dtnong#,是您的生日,我们在这里祝您生日快乐。';
$mobian['defnum'] = '您有#applyname#的(#modename#)单据需要您处理,详情:#url#';
$mobian['defurls'] = '您有单据(#modename#,单号:#sericnum#)需要处理,请及时去处理,详情:#url#。';
$mobian['gongsms'] = '您收到一条“#title#”的通知,详情:#url#';
$mobian['meetapply'] = '#optname#发起会议“#title#”在#hyname#,时间#startdt#至#enddt#';
$mobian['meetcancel'] = '#optname#取消会议“#title#”,时间#startdt#至#enddt#,请悉知。';
$mobian['meettodo'] = '会议“#title#”将在#fenz#分钟后的#time#开始请做好准备,在会议室“#hyname#”';
$this->mobianarr = $mobian;
}
/**
* 批量发送短信
* $mobiles 接收人手机号多个,分开
* $qianm 签名
* $tplid 模版编号在上面initChajian()数组中查找
* $cans 模版中的参数数组
* 例子c('mysms')->send('15800000000,15800000001','信呼', 'default', array('modename'=>'模块名','sericnum'=>'单号')); 这例子是不需要自己调用,只要短信设置下切换为“我的短信服务”就可以了
*/
public function send($mobiles, $qianm, $tplid, $cans=array())
{
//要发送短信的内容
$text = arrvalue($this->mobianarr, $tplid);
if(isempt($text))return returnerror('模版'.$tplid.'不存在');
foreach($cans as $k=>$v)$text = str_replace('#'.$k.'#', $v, $text);
//这里你要自己写你发送短信的代码------------
return returnerror('你没有开发自己短信接口,查看'.c('xinhu')->helpstr('mysms').'看如何开发');
//------------------------------------------
return returnsuccess();
}
}