自定义标签 thinkphp3.2.3

thinkphp内置的foreach和include等模板标签使用是非常方便的;但是内置的那些标签只能满足常用功能,个性化的功能就需要我们自己编写自定义模板标签了;下面就是要讲解如何实现;

示例环境:thinkphp3.2.3

thinkphp的模板标签放在ThinkPHP/Library/Think/Template/TagLib目录下;

其中Cx.class.php就是foreach、if等标签定义的地方;

其中Html.class.php就不废话了;有兴趣的可以去看一眼都什么内容;一眼就懂的那种;

实现自定义模板标签最简单的方法就是直接在Cx.class.php文件中增加即可;

为了方便以后的迁移升级;本着尽量不改变原框架文件的原则,建议自定义新的标签文件;

1:修改Application/Common/conf/config.php

增加如下一条配置;
'TAGLIB_BUILD_IN' => 'Cx,Common\Tag\My', //加载自定义标签


cx是内置的标签库,Common\Tag\My是自定义的标签库位置;

示例是在Application/Common/Tag目录下建的My.class.php

2:新建My.class.php文件

命名空间要和配置项中填写的一致;如下图;


OK重点来了,提起精神,下面就开始步入正题;正式开始写自定义模板标签了;
上篇文章已经把自定义标签的准备工作讲完了;那么接下来就是见证...的时候了;没看如何配置的请先移步thinkphp自定义模板标签(一)

闭合标签就是单标签;比如a标签、img标签等等;

非闭合标签就是对标签;比如div、p标签等等;

这里以自定义的ueditor和recommend标签为例;

自定义的闭合标签比较适合用来引文件;

自定义的对标签比较适合调取数据库的数据并前台页面遍历显示;



<?php  

 

namespace Common\Tag;

use Think\Template\TagLib;

 

class My extends TagLib {

    // 定义标签

    protected $tags=array(

         // 标签定义: attr 属性列表 close 是否闭合(0 或者1 默认1) alias 标签别名 level 嵌套层次

        'ueditor'=> array('attr'=>'name,content','close'=>0),

        'recommend'=>array('attr'=>'limit','level'=>1)

        );

 

    /**

    *引入ueidter编辑器

    *@param string $tag  name:表单name content:编辑器初始化后 默认内容

    */

    public function _ueditor($tag){

        $name=$tag['name'];

        $content=$tag['content'];

        $link=<<<php

<script id="container" name="$name" type="text/plain">

    $content

</script>

<script type="text/javascript" src="__PUBLIC__/static/ueditor1_4_3/ueditor.config.js"></script>

<script type="text/javascript" src="__PUBLIC__/static/ueditor1_4_3/ueditor.all.js"></script>

<script type="text/javascript">

    var ue = UE.getEditor('container');

</script>

php;

        return $link;

    }

 

    // 置顶推荐文章标签 cid为空时则抓取全部分类下的推荐文章

     public function _recommend($tag,$content){

         if(empty($tag['cid'])){

             $where="is_show=1 and is_delete=0 and is_top=1";

         }else{

             $where='is_show=1 and is_delete=0 and is_top=1 and cid='.$tag['cid'];

         }

         $limit=$tag['limit'];

         // p($recommend);

         $php=<<<php

<?php         

            \$recommend=M('Article')->field('aid,title')->where("$where")->limit($limit)->select();

            foreach (\$recommend as \$k => \$field) {

                \$url=U('Home/Index/article',array('aid'=>\$field['aid']));

?>

php;

        $php.=$content;    //拼字符串的过程。。。

        $php.='<?php } ?>';//foreach的回扩;

        return $php;

     }

}

?>


定义完成后在html页面中就可以直接使用<ueditor />即可引入ueditor文件;

<!DOCTYPE html>

<html>

<head>

    <meta charset="UTF-8">

    <title>Document</title>

<ueditor />

</head>

<body>

    <recommend cid="" limit="10">

       <a class="recommend-a" href="{:U('Home/Index/article',array('aid'=>$field['aid']))}" target="_blank">{$k+1}:{$field['title']}</a>

    </recommend>

</body>

</html>


ueditor标签可以直接实例化ueditor编辑器

而如下图本站的热门推荐就是使用recommend遍历的;