mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 02:45:33 +08:00
25 lines
1.5 KiB
PHP
25 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* Copyright 2012-2026 ShopeX (https://www.shopex.cn)
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
$setting = array(
|
|
'taoexlib.message.switch'=>array('type'=>SET_T_BOOL,'default'=>'off','desc'=>app::get('taoexlib')->_('发货同时启用短信提醒')),
|
|
'taoexlib.message.warningnumber'=>array('type'=>SET_T_TXT,'default'=>'500','desc'=>app::get('taoexlib')->_('短信预警条数')),
|
|
'taoexlib.message.sampletitle'=>array('type'=>SET_T_TXT,'default'=>'发货通知','desc'=>app::get('taoexlib')->_('短信模板设置标题')),
|
|
'taoexlib.message.samplecontent'=>array('type'=>SET_T_STR,'default'=>'{收货人},您好!您在{店铺名称}订购的商品已通过{物流公司}发出,单号:{物流单号},请当面检查后再签收,谢谢!','desc'=>app::get('taoexlib')->_('短信模板发送内容')),
|
|
'taoexlib.message.blacklist'=>array('type'=>SET_T_STR,'default'=>'13813800000##138138111111##13813822222##13813833333','desc'=>app::get('taoexlib')->_('免打扰列表')),
|
|
);
|
|
?>
|