織夢(mèng)內(nèi)容頁(yè)獨(dú)立內(nèi)容模板,可以讓文章不同樣式展示
ALTER TABLE `dede_archives` ADD `tempname` VARCHAR( 40 ) NOT NULL DEFAULT '';
文章模型的是
圖集模型的是
軟件模型的是
商品和自定義模型的是
根據(jù)你自己的模型來(lái)添加表單,搜索自定義文件名
發(fā)布和編輯都是插入如下的代碼
<script type="text/javascript">
function SelectTemplets(fname)
{
var posLeft = 200;
var posTop = 300;
window.open("../include/dialog/select_templets.php?f="+fname, "poptempWin", "scrollbars=yes,resizable=yes,statebar=no,width=600,height=400,left="+posLeft+", top="+posTop);
}
</script>
<tr>
<td colspan="2">
<table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:3px;">
<tr>
<td width="90" class="bline" height='24'> 自定義模板:</td>
<td class="bline"><input type='text' name="tempname" id="tempname" style='width:300px' class='text' value="<?php echo $arcRow['tempname']; ?>" /> <input name='diytemp_bt' type='button' class='inputbut' value='瀏覽...' onClick="SelectTemplets('form1.tempname')" />
</td>
</tr>
</table>
</td>
</tr>
文章模型的是
圖集模型的是
軟件模型的是
商品和自定義模型的是
打開(kāi)對(duì)應(yīng)的文檔發(fā)布處理,php文件是 xxx_add.php
找到
,weight
改成
,weight,tempname
繼續(xù)找到
,'$weight'
改成
,'$weight','$tempname'
文檔編輯處理php文件是 xxx_edit.php
找到
weight='$weight'
改成
weight='$weight',tempname='$tempname'
$this->Fields['filename'] = empty($this->Fields['filename'])? '' : $this->Fields['filename'];
在它下面加入
$this->Fields['tempname'] = empty($this->Fields['tempname'])? '' : $this->Fields['tempname'];
繼續(xù)找到
$cid = $this->ChannelUnit->ChannelInfos['nid'];
在它下面加入
$this->Fields['tempname'] = empty($this->Fields['tempname'])? '' : $this->Fields['tempname'];
繼續(xù)找到
$filetag = str_replace('{tid}', $tid,$filetag);
在它下面加入
if(!empty($this->Fields['tempname'])) $filetag = $this->Fields['tempname'];
這樣就完成了。
版權(quán)聲明: 本站資源均來(lái)自互聯(lián)網(wǎng)或會(huì)員發(fā)布,如果侵犯了您的權(quán)益請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!
轉(zhuǎn)載請(qǐng)注明: 織夢(mèng)文章內(nèi)容頁(yè)獨(dú)立內(nèi)容頁(yè)模板