当前位置:首页 > CMS教程 > phpcms > 列表

【phpcms-v9】前台{pc}专题标签调用类分析

发布:smiling 来源: PHP粉丝网  添加日期:2014-10-23 10:39:17 浏览: 评论:0 
  1. <?php   
  2. /**  
  3.  * special_tag.class.php 专题标签调用类  
  4.  * @author   
  5.  *  
  6.  */   
  7. class special_tag {   
  8.     private $db$c;   
  9.        
  10.     public function __construct() {   
  11.         $this->db = pc_base::load_model('special_model');//专题表:special   
  12.         $this->c = pc_base::load_model('special_content_model');//专题文章表:spscial_content   
  13.     }   
  14.        
  15.     /**  
  16.      * lists调用方法  
  17.      * @param array $data 标签配置传递过来的配置数组,根据配置生成sql  
  18.      */   
  19.     public function lists($data) {   
  20.         $siteid = $data['siteid'] ? intval($data['siteid']) : get_siteid();//当前站点id   
  21.         $where .= "`siteid`='".$siteid."'";//pc标签的siteid属性:当前站点专题   
  22.         if ($data['elite']) $where .= " AND `elite`='1'";//pc标签的elite属性:推荐专题   
  23.         if ($data['thumb']) $where .= " AND `thumb`!=''"//pc标签的thumb属性:有缩略图的专题   
  24.         if ($data['disable']) {   
  25.             $where .= " AND `disabled`='".$data['disable']."'";//是否启用:0-启用 1-禁用   
  26.         }else{   
  27.             $where .= " AND `disabled`='0'";//默认显示,正常显示的专题。   
  28.         }   
  29.         //专题的排序方式:0-按照id升序   1-按id降序      2-按listorder升序,id降序   3-按listorder降序,id降序   
  30.         $listorder = array('`id` ASC''`id` DESC''`listorder` ASC, `id` DESC''`listorder` DESC, `id` DESC');   
  31.         //查询专题表   
  32.         return $this->db->select($where'*'$data['limit'], $listorder[$data['listorder']]);   
  33.     }   
  34.        
  35.     /**  
  36.      * 标签中计算分页的方法,解析标签时会通过此方法计算分页信息  
  37.      * @param array $data 标签配置数组,根据数组计算出分页  
  38.      */   
  39.     public function count($data) {   
  40.         $where = '1';   
  41.         if($data['action'] == 'lists') {   
  42.             $where = '1';   
  43.             if ($data['siteid']) $where .= " AND `siteid`='".$data['siteid']."'";//站点id   
  44.             if ($data['elite']) $where .= " AND `elite`='1'";//推荐专题   
  45.             if ($data['thumb']) $where .= " AND `thumb`!=''"//缩略图   
  46.             //相当于 select count(id) as totle from gt_special $where   
  47.             $r = $this->db->get_one($where'COUNT(id) AS total');//专题总数   
  48.         } elseif ($data['action'] == 'content_list') {//如果要调用专题文章列表   
  49.             if ($data['specialid']) $where .= " AND `specialid`='".$data['specialid']."'";//专题id   
  50.             if ($data['typeid']) $where .= " AND `typeid`='".$data['typeid']."'";//类别id   
  51.             if ($data['thumb']) $where .= " AND `thumb`!=''";//缩略图   
  52.             $r = $this->c->get_one($where'COUNT(id) AS total');//查询到的专题文章总数   
  53.         } elseif ($data['action'] == 'hits') {//如果要调用点击量信息   
  54.             $hitsid = 'special-c';   
  55.             if ($data['specialid']) $hitsid .= $data['specialid'].'-';   
  56.             else $hitsid .= '%-';   
  57.             $hitsid = $hitsid .= '%';   
  58.             $hits_db = pc_base::load_model('hits_model');   
  59.             $sql = "hitsid LIKE '$hitsid'";   
  60.             $r = $hits_db->get_one($sql'COUNT(*) AS total');//点击排行文章总数   
  61.         }   
  62.         return $r['total'];   
  63.     }   
  64.        
  65.     /**  
  66.      * 点击排行调用方法  
  67.      * @param array $data 标签配置数组  
  68.      */   
  69.     public function hits($data) {   
  70.         $hitsid = 'special-c-';//hits表中hitsid字段的组成   
  71.         if ($data['specialid']) $hitsid .= $data['specialid'].'-';//如果专题id存在,则查询当前专题下的专题文章   
  72.         else $hitsid .= '%-';//如果专题id不存在,则查询所有的专题文章   
  73.         $hitsid = $hitsid .= '%';   
  74.         $this->hits_db = pc_base::load_model('hits_model');//hits表   
  75.         $sql = "hitsid LIKE '$hitsid'";//拼接sql   
  76.         //排序方式:0-按总访问量降序排列      1-按昨日访问量降序排列    2-按今日访问量降序排列   3-按本周访问量降序排列   4-按本月访问量降序排列   
  77.         $listorders = array('views DESC''yesterdayviews DESC''dayviews DESC''weekviews DESC''monthviews DESC');   
  78.         //查询点击量表   
  79.         $result = $this->hits_db->select($sql'*'$data['limit'], $listorders[$data['listorder']]);   
  80.         foreach ($result as $key => $r) {   
  81.             $ids = explode('-'$r['hitsid']);//hits表中hitsid字段拆分,如:special-c-1-1   
  82.             $id = $ids[3];//当前专题文章的id   
  83.             //查询专题文章主表   
  84.             $re = $this->c->get_one(array('id'=>$id));//从专题文章表special_content中获取当前专题文章的内容   
  85.             $result[$key]['title'] = $re['title'];//专题文章的标题   
  86.             $result[$key]['url'] = $re['url'];//专题文章的url   
  87.         }   
  88.         return $result;   
  89.     }   
  90.        
  91.     /**  
  92.      * 内容列表调用方法  
  93.      * @param array $data 标签配置数组  
  94.      */   
  95.     public function content_list($data) {   
  96.         $where = '1';   
  97.         if ($data['specialid']) $where .= " AND `specialid`='".$data['specialid']."'";//专题id   
  98.         if ($data['typeid']) $where .= " AND `typeid`='".$data['typeid']."'";//专题类别id   
  99.         if ($data['thumb']) $where .= " AND `thumb`!=''";//缩略图   
  100.         //排序方式:0-id升序   1-id降序   2-listorder升序   3-listorder降序   
  101.         $listorder = array('`id` ASC''`id` DESC''`listorder` ASC''`listorder` DESC');   
  102.         //查询专题文章主表   
  103.         $result = $this->c->select($where'*'$data['limit'], $listorder[$data['listorder']]);   
  104.         if (is_array($result)) {   
  105.             foreach($result as $k => $r) {   
  106.                 if ($r['curl']) {//是否为信息导入:导入原文章的栏目id和文章id   
  107.                     $content_arr = explode('|'$r['curl']);   
  108.                     $r['url'] = go($content_arr['1'], $content_arr['0']);//参数1:栏目id   参数2:文章id   
  109.                 }   
  110.                 $res[$k] = $r;//专题文章主表中的记录   
  111.             }   
  112.         } else {   
  113.             $res = array();   
  114.         }   
  115.         return $res//返回专题文章表中查询到的记录   
  116.     }   
  117.        
  118.     /**  
  119.      * 获取专题分类方法  
  120.      * @param intval $specialid 专题ID  
  121.      * @param string $value 默认选中值  
  122.      * @param intval $id onchange影响HTML的ID  
  123.      *   
  124.      */   
  125.     public function get_type($specialid = 0, $value = ''$id = '') {   
  126.         $type_db = pc_base::load_model('type_model');//类别表   
  127.         $data = $arr = array();   
  128.         //查询类别表   
  129.         $data = $type_db->select(array('module'=>'special''parentid'=>$specialid));   
  130.         //表单类   
  131.         pc_base::load_sys_class('form''', 0);   
  132.         foreach($data as $r) {   
  133.             $arr[$r['typeid']] = $r['name'];//类别名称   
  134.         }   
  135.         $html = $id ? ' id="typeid" onchange="$(\'#'.$id.'\').val(this.value);"' : 'name="typeid", id="typeid"';   
  136.         return form::select($arr$value$html, L('please_select'));//请选择所属类别   
  137.     }   
  138.        
  139.     /**  
  140.      * 标签生成方法  
  141.      */   
  142.     public function pc_tag() {   
  143.         //获取站点   
  144.         $sites = pc_base::load_app_class('sites','admin');   
  145.         $sitelist = $sites->pc_tag_list();   
  146.            
  147.         $result = getcache('special''commons');   
  148.         if(is_array($result)) {   
  149.             $specials = array(L('please_select'));   
  150.             foreach($result as $r) {   
  151.                 if($r['siteid']!=get_siteid()) continue;   
  152.                 $specials[$r['id']] = $r['title'];   
  153.             }   
  154.         }   
  155.         return array(   
  156.             'action'=>array('lists'=>L('special_list''''special'), 'content_list'=>L('content_list''''special'), 'hits'=>L('hits_order','','special')),   
  157.             'lists'=>array(   
  158.                 'siteid'=>array('name'=>L('site_id','','comment'), 'htmltype'=>'input_select''data'=>$sitelist),   
  159.                 'elite'=>array('name'=>L('iselite''''special'), 'htmltype'=>'radio''defaultvalue'=>'0''data'=>array(L('no'), L('yes'))),   
  160.                 'thumb'=>array('name'=>L('get_thumb''''special'), 'htmltype'=>'radio','defaultvalue'=>'0','data'=>array(L('no'), L('yes'))),   
  161.                 'listorder'=>array('name'=>L('order_type''''special'), 'htmltype'=>'select''defaultvalue'=>'3''data'=>array(L('id_asc''''special'), L('id_desc''','special'), L('order_asc','','special'), L('order_desc''','special'))),   
  162.             ),   
  163.             'content_list'=>array(   
  164.                 'specialid'=>array('name'=>L('special_id','','special'),'htmltype'=>'input_select''data'=>$specials'ajax'=>array('name'=>L('for_type','','special'), 'action'=>'get_type''id'=>'typeid')),   
  165.                 'thumb'=>array('name'=>L('content_thumb','','special'),'htmltype'=>'radio','defaultvalue'=>'0','data'=>array(L('no'), L('yes'))),   
  166.                 'listorder'=>array('name'=>L('order_type''''special'), 'htmltype'=>'select''defaultvalue'=>'3''data'=>array(L('id_asc''''special'), L('id_desc''','special'), L('order_asc','','special'), L('order_desc''','special'))),   //开源软件:phpfensi.com 
  167.             ),   
  168.             'hits' => array(   
  169.                 'specialid' => array('name'=>L('special_id','','special'), 'htmltype'=>'input_select''data'=>$specials),   
  170.                 'listorder' => array('name' => L('order_type''''special'), 'htmltype' => 'select''data'=>array(L('total','','special'), L('yesterday''','special'), L('today','','special'), L('week','','special'), L('month','','special'))),   
  171.             ),   
  172.         );   
  173.     }   
  174. }   
  175. ?>

Tags: phpcms专题标签 phpcms专题调用

分享到:

相关文章