tp6多应用自定义taglib标签

程序猿 2021-03-26 09:28:42 9184浏览 加载中

1,首先在app下面新建common文件夹做为公共文件夹。

2,在common下面新建taglib来放我们的标签

3,新建一个类如ht,注意需要继承think\template\TagLib;

codelayui.code

  1. <?php
  2. namespace app\common\taglib;
  3. use think\template\TagLib;
  4. class ht extends TagLib
  5. {
  6. }

代码解构:

自定义标签.jpg

假如我们要定义一个获取文章列表的标签,代码如下

codelayui.code

  1. <?php
  2. namespace app\common\taglib;
  3. use think\template\TagLib;
  4. class ht extends TagLib
  5. {
  6.     protected $tags =[
  7.         'article' => ['attr'=>'name,length,id,typeid,titlelen,orderby,type,is_tui'],
  8.     ];
  9.     // 文章调用
  10.     public function tagArticle($tag, $content)
  11.     {
  12.         $name   = !empty($tag['name']) ? $tag['name'] : '';
  13.         $orderby   = !empty($tag['orderby']) ? $tag['orderby'] : '';
  14.         $typeid = !empty($tag['typeid']) ? $tag['typeid']: 0;
  15.         $is_tui = !empty($tag['is_tui']) ? $tag['is_tui']: 'all';
  16.         $typeid = $this->varOrvalue($typeid);
  17.         $length = !empty($tag['length']) && is_numeric($tag['length']) ? intval($tag['length']) : 5;
  18.         $titlelen = !empty($tag['titlelen']) && is_numeric($tag['titlelen']) ? intval($tag['titlelen']) : 100;
  19.         $id   = !empty($tag['id']) ? $tag['id'] : 'field';
  20.         $type = !empty($tag['type']) ? $tag['type'] : 'self';
  21.         $parse = '<?php ';
  22.         $parse .= '$tagArtlist = new app\common\taglib\ht\tagArtList;'; // 在这里调用了另一个类,我们再定义一个类
  23.         $parse .= '$typeid = '.$typeid.';';
  24.         $parse .= '$Article = $tagArtlist->getArticle($typeid,'.$length.','.$titlelen.',"'.$orderby.'","'.$type.'","'.$is_tui.'");';
  25.         $parse .= '$__LIST__ = $Article;';
  26.         $parse .= ' ?>';
  27.         $parse .= '{volist name="__LIST__" length="' . $length .'" id="' . $id . '"';
  28.         $parse .= '"}';
  29.         $parse .= $content;
  30.         $parse .= '{/volist}';
  31.         return $parse;
  32.     }
  33. }

文件app\common\taglib\ht\tagArtList

codelayui.code

  1. <?php
  2. namespace app\common\taglib\ht;
  3. use app\common\model\Archives as ArcModel;
  4. use app\common\model\Arctype;
  5. class tagArtList extends Base
  6. {
  7.     protected function _initialize()
  8.     {
  9.         parent::_initialize(); // TODO: Change the autogenerated stub
  10.     }
  11.     // 获取Article列表
  12.     public function getArticle($typeid,$length, $titlelen, $order,$type,$is_tui="all")
  13.     {
  14.         $page = $this->page;
  15.         $typeid = $typeid ? $typeid : $this->tid;
  16.         $where = [
  17.             ['status', '=', 1]
  18.         ];
  19.         if ($is_tui != "all") {
  20.             $where[] = ["is_tui", "=", $is_tui];
  21.         }
  22.         $typeid = explode(",",$typeid);
  23.         if ($type == "son") {
  24.             $typeid2 = Arctype::where("status",1)->where("pid","in",$typeid)->column("id");
  25.             $typeid = array_merge($typeid,$typeid2);
  26.         }
  27.         if (!in_array(0,$typeid) && !in_array("all",$typeid)) {
  28.             $where[] = [
  29.                 ['arctype_id', 'in', $typeid]
  30.             ];
  31.         }
  32.         if (empty($order)) {
  33.             $Article = ArcModel::where($where)->order('id desc')
  34.                 ->paginate(["list_rows"=>$length,"page"=>$page]);
  35.         } elseif ($order == 'rand') {
  36.             $Article = ArcModel::where($where)->orderRand()
  37.                 ->paginate(["list_rows"=>$length,"page"=>$page]);;
  38.         } else {
  39.             $Article = ArcModel::where($where)->order($order)
  40.                 ->paginate(["list_rows"=>$length,"page"=>$page]);;
  41.         }
  42.         foreach ($Article as $i=>$value) {
  43.             if ($value->is_jump == 1) {
  44.                 $Article[$i]['href'] = $value->url;
  45.             } else {
  46.                 $Article[$i]['href'] = url('Views/index', ['aid'=>$value->id]);
  47.             }
  48.             $Article[$i]['ltitle'] = mb_substr($Article[$i]['title'], 0, $titlelen);
  49.         }
  50.         return $Article;
  51.     }
  52. }

这样一个获取文章列表的taglib标签就定义好,不过要想使用还需要在模板的配置下预加载标签

自定义标签2.jpg

由于是多应用模式,哪个应用需要就在哪个应用下面新建config目录,新建view配置文件,把全局的view复制过来,加入一行,见上图。

标签: tp6 taglib
最后修改:2025-04-04 22:41:19

非特殊说明,本博所有文章均为博主原创。