1. 程式人生 > >專題模組phpcms

專題模組phpcms

專題模組

模組名:special

模組提供的可用操作

操作名 說明
lists 專題列表
content_list 專題資訊列表
hits 專題資訊點選排序

下面對所有的操作分開說明

專題列表(lists):

可用引數:

引數名 是否必須 預設值 說明
siteid 當前站點 站點ID
elite null 是否推薦
isthumb null 必須有縮圖
listorder null 排序方式

程式碼例子:

1 2 3 4 5 6 {pc:special action="lists" siteid="$siteid" elite="1" listorder="2" num="3"}<
P></P> {loop $data $r} <a href="{$r['url']}"><img src="{thumb($r['thumb'], 224, 112)}" width="224" height="112" alt="{$r['title']}" /><p><strong>{$r['title']}</strong> {$r['description']}</a> {/loop} {/pc}

返回引數如下表:

欄位 型別 預設 註釋
siteid smallint(5) 所屬站點ID
id smallint(5) 0 專題ID
title char(60) 專題名稱
thumb char(255) 專題縮圖
banner char(100) 0 專題橫幅
description char(255) 0 專題導讀
url char(100) 0 專題url地址
ishtml tinyint(1) 0 生成靜態
ispage tinyint(1) 0 首頁實現分頁
int(10) 0 建立時間

專題資訊列表(content_list):

可用引數:

引數名 是否必須 預設值 說明
specialid null 專題ID
typeid null 分類ID
isthumb null 必須有縮圖
listorder null 排序方式

程式碼例子:

1 2 3 4 5 6 {pc:special action="content_list" specialid="$specialid" typeid="$typeid" listorder="2" num="3"} {loop $data $r} <h4 class="blue"><a href="{$r['url']}" target="_blank">{$r['title']}</A><H4></H4> <p>{str_cut($r['description'], 150)}<P></P> {/loop} {/pc}

返回引數如下表:

欄位 型別 預設 註釋
id mediumint(8) ID
smallint(5) 0 專題ID
title char(80) 文章標題
smallint(5) 分類ID
char(100) 0 url地址
char(100) 0 縮圖
char(40) 0 關鍵字
int(10) 0 新增時間
int(10) 0 更新時間
islink tinyint(1) 0 外部連結

專題內容排行榜(hits):

可用引數:

引數名 是否必須 預設值 說明
specialid null 專題ID
listorder null 排序方式

程式碼例子:

1 2 3 4 5 {pc:special action="hits" specialid="$specialid" listorder="2" num="3"} {loop $data $r} <a href="{$r['url']}">{$r['title']}</A> {/loop} {/pc}

返回引數如下表:

欄位 型別 預設 註釋
hitsid char(30) ID
views int(10) 0 總瀏覽數
yesterdayviews int(10) 0 昨天瀏覽數
dayviews int(10) 0 當日瀏覽數
weekviews int(10) 0 本週瀏覽數
monthviews int(10) 0 本月瀏覽數
url char(100) 0 url地址
title char(60) 0 標題