codecamp

模板自定义函数库

模板自定义函数库

上一页下一页

在模板开发时,其实可以给此模板增加自己的函数

以simplebootx为例:

这是simplebootx现在的结构;

下面我们来增加给simplebootx增加一个函数库文件;

a).在simplebootx目录下增加文件function.html;

b).在function.html加入自己的php函数_sp_helloworld()

<php>
function _sp_helloworld(){
    echo "hello ThinkCMF!";
}

</php>

这样就增加了一个自定义方法,注意函数的命名格式:下划线+自己的函数前缀+方法名;

这样命名的好处,在于不会和官方的方法冲突,同时官方也方便采纳你的方法,前面的下划线去掉就可以了;

c).引入自定义函数库

只要在需要用自定义方法的模板头部用tc_include标签引入就可以了

如在Portal/index.html文件第一行引入函数库:

<tc_include file=":function"/>

你也可以增加多个函数库文件,比如在Portal下,你也可以加个function.html;按自己的需要增加,再引入就行了;

上一页下一页

添加留言控件
案例
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

后台管理

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }