POST TIME:2019-09-29 15:18
(DedeCMS> 3.0,DedeCMS 4,DedeCMS 5)
名稱:arclist
功能:用于獲取系統主從表模型(如:文章、軟件、圖集、商品等)的一列文檔,也稱自由列表塊標記,其中imglist、imginfolist、specart、coolart、autolist都是由該標記所定義的不同屬性延伸出來的別名標記。
語法:
dede:arclist flag='h' typeid='' row='' col='' titlelen='' infolen='' imgwidth='' imgheight='' listtype='' orderby='' keyword='' limit='0,1'} <a href='[field:arcurl/]'>[field:title/]</a> {/dede:arclist}文件:
include aglibrclist.lib.php
function lib_arclist(&$ctag,&$refObj)
默認底層模板:
imglist:part_imglist.htm
imginfolist:part_imginfolist.htm
arclist:part_arclist.htm
參數:
col='' 分多少列顯示(默認為單列),5.3版中本屬性可以通過多種方式進行多行顯示
如果col='1'要多列顯示的可用div+css實現
以下為通過div+css實現多列的范例:
<style type=text/css> div{width:400px;float:left;} </style> {dede:arclist row='10' titlelen='24' orderby='pubdate' idlist='' col='2'} [field:textlink/]([field:pubdate function=MyDate('m-d',@me)/])<br/> {/dede:arclist}當col>1將使用原來的table多列方式顯示
row='10' 返回文檔列表總數
typeid='' 欄目ID,在列表模板和檔案模板中一般不需要指定,在首頁模板中允許用","分開表示多個欄目;
getall='1'在沒有指定這屬性的情況下,在欄目頁、文章頁模板,不會獲取以","分開的多個欄目的下級子類
titlelen = '30' 標題長度 等同于titlelength
infolen='160' 表示內容簡介長度 等同于infolength(只控制infos,并不控制description的內容)
imgwidth='120'縮略圖寬度
imgheight='90' 縮略圖高度
listtype='all' 欄目類型image含有縮略圖commend推薦
orderby='sortrank'文檔排序方式
lorderby='hot'或orderby='click'表示按點擊數排列
lorderby='sortrank'或orderby='pubdate'按出版時間排列
lorderby='near'
lorderby=='lastpost'按最后評論時間
lorderby=='scores'按得分排序
lorderby='id'按文章ID排序
lorderby='rand'隨機獲得指定條件的文檔列表
keyword=''含有指定關鍵字的文檔列表,多個關鍵字用","分
innertext = ''單條記錄樣式
aid=''指定文檔ID
idlist =''提取特定文檔(文檔ID)
channelid頻道ID
limit='起始ID,記錄數'(起始ID從0開始)表示限定的記錄范圍(如:limit='1,2'表示從ID為1的記錄開始,取2條記錄)
flag = 'h' 自定義屬性值:頭條[h]推薦[c]圖片[p]幻燈[f]滾動[s]跳轉[j]圖文[a]加粗[b]
noflag = ''同flag,但這里是表示不包含這些屬性
orderway='desc' 值為desc 或asc,指定排序方式是降序還是順向排序,默認為降序
subday='天數'表示在多少天以內的文檔
底層字段:
ID(同id),typeid,sortrank,flag,ismake,channel,arcrank,click,money,title,shorttitle,color,writer,
source,litpic(同picname),pubdate,senddate,mid, lastpost,scores,goodpost,badpost,notpost,
description(同infos),filename, image, imglink, fulltitle, textlink, typelink,plusurl, memberurl, templeturl,
stime(pubdate 的"0000-00-00"格式)
其中:
textlink = <a href='arcurl'>title</a> typelink = <a href='typeurl'>typename</a> imglink=<a href='arcurl'><img src='picname' border='0' width='imgwidth' height='imgheight'></a> image = <img src='picname' border='0' width='imgwidth' height='imgheight' target='_blank'>織夢標記的一種形式,因此支持使用PHP語法,Function擴展等功能。如: 給當天發布的內容加上 (new)標志
[field:senddate runphp='yes'] $ntime = time(); $oneday = 3600 * 24; if(($ntime - @me)<$oneday) @me = "<font color='red'>(new)</font>"; else @me = ""; [/field:senddate]