XOOPS模組開發記錄
- 可直接套用ugm_tools2的blockTitle.tpl樣板,即有強化區塊標題的功能
<{if $block.title|regex_replace:"/.*\[hide\].*/":"hide" != "hide"}>
<h4 class="blockTitle">
<{includeq file="$xoops_rootpath/modules/ugm_tools2/themes_common/blockTitle.tpl"}>
</h4>
<{/if}>
- 在theme.tpl
<link rel="stylesheet" type="text/css" href="<{xoImgUrl}>css/xoops.css">
xoops.css 會引入
@import url("xoops_style.css");
xoops_style.css 會引入
@import url("xoops_block.css");
- 想隱藏區塊標題,請在標題後加上 [hide],例如:"標題 [hide]"。
- 想使用圖片作為標題,請在標題後加上 [pic]以及圖片在佈景中的位置,
例如:"標題 [pic]img/usermenu.png" 、"標題 [pic]img/https://www.ugm.com.tw/xxx.png"
- 想要在區塊標題前面放一個 icon,請在標題後加上 [icon]以及圖片在佈景中的位置,如:"標題 [icon]img/icon.gif"。
- 希望區塊標題有連結網址,請在標題後加上 [link]以及網址,例如:"標題 [link]https://www.ugm.com.tw"。
- 當使用圖片作為標題時,原本的區塊名稱會作為 "alt" 或 "title" 標籤的內容。