TPshop是用thinkphp开发的一款免费开源网店系统,二次开发非常方便,代码清晰简洁,通俗易懂,丰富的插件和多套模板支持,易扩展,是目前国内首家最为完善的开源商城系统。系统支持多语言版本,操作简单,安全稳定,是广大用户二次开发的最佳选择,我以替换短信接口为例,一步一步的手把手教大家开发过程,我们做演示的短信平台是短信宝(http://www.smsbao.com)短信平台,我们公司和短信宝平台合作好几年了,他们的平台非常稳定,而且快速,注册还送免费测试短信,大家可以在短信宝平台注册一个账号,进行测试。
首先我们要更换后台的显示界面文件。打开模版文件,替换一下模版文件。打开项目/application/admin/view2/system/sms.html文件,修改代码26~156行,代码如下图所示:
<div class="explanation" id="explanation">
<div class="title" id="checkZoom"><i class="fa fa-lightbulb-o"></i>
<h4 title="提示相关设置操作时应注意的要点">操作提示</h4>
<span id="explanationZoom" title="收起提示"></span></div>
<ul>
<li>系统平台全局设置,包括基础设置、购物、短信、邮件、水印和分销等相关模块。</li>
<li>短信宝的官网:http://www.smsbao.com</li>
<li>有任何疑问,请咨询短信宝客服</li>
</ul>
</div>
<form method="post" enctype="multipart/form-data" name="form1" action="{:U('System/handle')}">
<input type="hidden" name="inc_type" value="{$inc_type}">
<div class="ncap-form-default">
<dl class="row">
<dt class="tit">
<label for="sms_appkey">短信宝账号</label>
</dt>
<dd class="opt">
<input id="sms_appkey" name="sms_appkey" value="{$config.sms_appkey}" class="input-txt" type="text"/>
<p class="notic">短信宝的用户名,还未注册短信宝的用户请点击<a href="http://www.smsbao.com" target="_blank">免费注册</a></p>
</dd>
</dl>
<dl class="row">
<dt class="tit">
<label for="sms_secretKey">短信宝密码</label>
</dt>
<dd class="opt">
<input id="sms_secretKey" name="sms_secretKey" value="{$config.sms_secretKey}" class="input-txt" type="password"/>
<p class="notic">短信宝账号密码</p>
</dd>
</dl>
<dl class="row">
<dt class="tit">
<label for="sms_product">公司名/品牌名/产品名</label>
</dt>
<dd class="opt">
<input id="sms_product" name="sms_product" value="{$config.sms_product}" class="input-txt" type="text"/>
<p class="notic">公司名/品牌名/产品名</p>
</dd>
</dl>
<dl class="row">
<dt class="tit">用户注册时</dt>
<dd class="opt">
<div class="onoff">
<label for="regis_sms_enable1" class="cb-enable <if condition='$config[regis_sms_enable] eq 1'>selected</if>">开启</label>
<label for="regis_sms_enable0" class="cb-disable <if condition='$config[regis_sms_enable] eq 0'>selected</if>">关闭</label>
<input id="regis_sms_enable1" name="regis_sms_enable" <if condition="$config['regis_sms_enable'] eq 1">checked="checked"</if> value="1" type="radio">
<input id="regis_sms_enable0" name="regis_sms_enable" <if condition="$config['regis_sms_enable'] eq 0">checked="checked"</if> value="0" type="radio">
</div>
<p class="notic">用户注册时使用短信验证</p>
</dd>
</dl>
<dl class="row">
<dt class="tit">用户找回密码时</dt>
<dd class="opt">
<div class="onoff">
<label for="forget_pwd_sms_enable1" class="cb-enable <if condition='$config[forget_pwd_sms_enable] eq 1'>selected</if>">开启</label>
<label for="forget_pwd_sms_enable0" class="cb-disable <if condition='$config[forget_pwd_sms_enable] eq 0'>selected</if>">关闭</label>
<input id="forget_pwd_sms_enable1" name="forget_pwd_sms_enable" <if condition="$config['forget_pwd_sms_enable'] eq 1">checked="checked"</if> value="1" type="radio">
<input id="forget_pwd_sms_enable0" name="forget_pwd_sms_enable" <if condition="$config['forget_pwd_sms_enable'] eq 0">checked="checked"</if> value="0" type="radio">