1 頁 (共 1 頁)

[問題]ezportal

發表於 : 2003-09-23 13:21
♂ am☆Kenny
●架設主機作業系統:Windowsxp
●快速架站程式:Appserv
● phpBB2 版本:phpBB 2.0.5
●問題:
我想知道如果我想弄多個table
如:
portal_body.tpl
<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
<tr>
<td class="catHead" height="25"><span class="genmed"><b>³sµ²</b></span></td>
</tr>
<tr>
<td class="row1" align="center"></a></td>
</tr>
</table>

</td></tr></table>
</td>

<td valign="top" width="55%">
<table width="97%" cellspacing="1" cellpadding="1" border="0" align="center"><tr><td>
<!-- BEGIN welcome_text -->
<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
<tr>
<td class="catHead" height="25"><span class="genmed"><b>{L_NAME_WELCOME}</b></span></td>
</tr>
<tr>
<td class="row1" align="left"><span class="gensmall" style="line-height:150%">{WELCOME_TEXT}<br /> </span></td>
</tr>
</table>

<br />

<!-- END welcome_text -->
就可以弄到welcome的box
如果我想弄另一個(如:公告),我要怎麼辦呢?

發表於 : 2004-04-08 21:59
jessie
有人可以回答這個問題嗎? :roll:

發表於 : 2004-04-08 22:22
看不懂?是想寫個公告放在討論區的上方?然後公告內容由後檯設定?(已有此MOD)

發表於 : 2004-04-08 22:28
jessie
文 寫:看不懂?是想寫個公告放在討論區的上方?然後公告內容由後檯設定?(已有此MOD)
在portal_body.php
新增一個像link這樣的欄位然後擺在link上面\r
比如說我現在有一個氣象台想放置在link上面

發表於 : 2004-04-08 23:06
.........那沒什麼特別的需求就直接在TPL作業啊?直接寫一個TABLE進去不是就好了?

發表於 : 2004-04-08 23:18
我來回一下原作者好了!

要再增加一個公告不難,我手邊的這個檔案是非資料庫版!所以它是直接把資料寫在擋頭。

代碼: 選擇全部

$CFG['welcome_text'] = 'Welcome to <b>My Community</b><br /><br />Thanks for using ezPortal,<br /><br />Have a good time! ^_^';
至於它怎麼輸出!就是在檔尾的陣列

代碼: 選擇全部

$template->assign_vars(array(
	'WELCOME_TEXT' => $CFG['welcome_text'],
結論...Copy一次Code就完工了!...