dzx2.5 template\default\forum\viewthread_node_body.htm代碼調用註釋

第二行直到第十三行
該段代碼所調用的就是版主或以上用戶組(不包自定義用戶及普通用戶等)
在進行對帖子屏蔽﹑禁止用戶﹑禁止發言﹑禁止訪問﹑hide代碼中的提示以及內容顯示javascript

<!--{if !$_G['forum']['ismoderator'] && $_G['setting']['bannedmessages'] & 1 && (($post['authorid'] && !$post['username']) || ($_G['thread']['digest'] == 0 && ($post['groupid'] == 4 || $post['groupid'] == 5 || $post['memberstatus'] == '-1')))}-->


此段是判斷於用戶組的顯示信息(只限於版主或以上用戶組)php

{lang message_banned}


調用語言包"source\language\forum\lang_template.php"(1176,4):  'message_banned' => '提示: <em>做者被禁止或刪除 內容自動屏蔽</em>',"html

<!--{elseif !$_G['forum']['ismoderator'] && $post['status'] & 1}


"若是用戶給屏蔽後提示下列信息"java

{lang message_single_banned}


調用語言包"source\language\forum\lang_template.php"(1178,4):  'message_single_banned' => '提示: <em>該帖被管理員或版主屏蔽</em>',"ajax

<!--{elseif $needhiddenreply}-->
        <div class="locked">{lang message_ishidden_hiddenreplies}</div>


若是樓主設置了帖子只有做者可見所顯示的信息,{lang message_ishidden_hiddenreplies}調用語言包"source\language\forum\lang_misc.php"(30,3):    'message_ishidden_hiddenreplies' => '此帖僅做者可見',"cookie

<!--{elseif $post['first'] && $_G['forum_threadpay']}-->
    <!--{template forum/viewthread_pay}-->


若是"<!--{elseif $post['first'] && $_G['forum_threadpay']}-->"是出售主題那麼就"<!--{template forum/viewthread_pay}-->"調用模版文件夾下的出售主題信息模版ide

        <!--{if !$post['first'] && !empty($post[subject])}-->
                <h2>$post[subject]</h2>
        <!--{/if}-->


調用帖子內容(內容很少說)oop

<!--{if $_G['setting']['bannedmessages'] & 1 && (($post['authorid'] && !$post['username']) || ($_G['thread']['digest'] == 0 && ($post['groupid'] == 4 || $post['groupid'] == 5 || $post['memberstatus'] == '-1')))}-->
                <div class="locked">{lang admin_message_banned}</div>


IF判斷若是用戶組不是版主或以上用戶組所顯示出的提示
{lang admin_message_banned}調用於語言包
"source\language\forum\lang_template.php"(1166,10):  'admin_message_banned' => '提示: <em>做者被禁止或刪除 內容自動屏蔽,只有管理員或有管理權限的成員可見</em>',"
post

        <!--{elseif $post['status'] & 1}-->
                <div class="locked">{lang admin_message_single_banned}</div>
        <!--{/if}-->


IF句判斷是禁止用戶的句子
{lang admin_message_single_banned} 調用於語言包(很少說先行搜索唄)
ui

        <!--{if !$post['first'] && $hiddenreplies && $_G['forum']['ismoderator']}-->
                <div class="locked">{lang message_ishidden_hiddenreplies}</div>
        <!--{/if}-->


IF句判斷樓主是否設置了回帖只有做者可見的功能
{lang message_ishidden_hiddenreplies}調用於語言包 很少說 自行搜索

                <!--{if $_G['forum_thread']['price'] > 0 && $_G['forum_thread']['special'] == 0}-->
                        <div class="locked"><em class="y"><a href="forum.php?mod=misc&action=viewpayments&tid=$_G[tid]">{lang pay_view}</a></em>{lang pay_threads}: <strong>$_G[forum_thread][price] {$_G['setting']['extcredits'][$_G['setting']['creditstransextra'][1]][unit]}{$_G['setting']['extcredits'][$_G['setting']['creditstransextra'][1]][title]} </strong></div>
                <!--{/if}-->


IF判斷該帖是否以出售主題的形式發佈
如是即顯示下列內容
{lang pay_view} =>查看
{lang pay_threads} =>付費主題,出價
$_G[forum_thread][price] {$_G['setting']['extcredits'][$_G['setting']['creditstransextra'][1]][unit]}{$_G['setting']['extcredits'][$_G['setting']['creditstransextra'][1]][title]} => 調用出出售帖子的價格以及積分名

<!--{if $threadsort && $threadsortshow}-->
                        <!--{if $threadsortshow['typetemplate']}-->
                                $threadsortshow[typetemplate]
                        <!--{elseif $threadsortshow['optionlist']}-->
                                <div class="typeoption">
                                        <!--{if $threadsortshow['optionlist'] == 'expire'}-->
                                                {lang has_expired}
                                        <!--{else}-->
                                                <table summary="{lang threadtype_option}" cellpadding="0" cellspacing="0" class="cgtl mbm">
                                                        <caption>$_G[forum][threadsorts][types][$_G[forum_thread][sortid]]</caption>
                                                        <tbody>
                                                                <!--{loop $threadsortshow['optionlist'] $option}-->
                                                                        <!--{if $option['type'] != 'info'}-->
                                                                                <tr>
                                                                                        <th>$option[title]:</th>
                                                                                        <td><!--{if $option['value']}-->$option[value] $option[unit]<!--{else}-->-<!--{/if}--></td>
                                                                                </tr>
                                                                        <!--{/if}-->
                                                                <!--{/loop}-->
                                                        </tbody>
                                                </table>
                                        <!--{/if}-->
                                </div>
                        <!--{/if}-->
                <!--{/if}-->
        <!--{/if}-->


調用主題分類信息帖子內容頁模版信息(後臺所設置的信息)

<!--{if $post['first']}-->
                        <!--{if !$_G[forum_thread][special]}-->
                                <table cellspacing="0" cellpadding="0"><tr><td class="t_f" id="postmessage_$post[pid]">
                                <!--{if !$_G['inajax']}-->
                                        <!--{if $ad_a_pr}-->
                                                $ad_a_pr
                                        <!--{/if}-->
                                <!--{/if}-->
                                $post[message]</td></tr></table>
                        <!--{elseif $_G[forum_thread][special] == 1}-->
                                <!--{template forum/viewthread_poll}-->
                        <!--{elseif $_G[forum_thread][special] == 2}-->
                                <!--{template forum/viewthread_trade}-->
                        <!--{elseif $_G[forum_thread][special] == 3}-->
                                <!--{template forum/viewthread_reward}-->
                        <!--{elseif $_G[forum_thread][special] == 4}-->
                                <!--{template forum/viewthread_activity}-->
                        <!--{elseif $_G[forum_thread][special] == 5}-->
                                <!--{template forum/viewthread_debate}-->
                        <!--{elseif $_G[forum_thread][special] == 127}-->
                                $threadplughtml
                                <table cellspacing="0" cellpadding="0"><tr><td class="t_f" id="postmessage_$post[pid]">$post[message]</td></tr></table>
                        <!--{/if}-->
                <!--{else}-->
                        <table cellspacing="0" cellpadding="0"><tr><td class="t_f" id="postmessage_$post[pid]">
                        <!--{if !$_G['inajax']}-->
                                <!--{if $ad_a_pr}-->
                                        $ad_a_pr
                                <!--{/if}-->
                        <!--{/if}-->
                        <!--{if $post['invisible'] != '-2' || $_G['forum']['ismoderator']}-->$post[message]<!--{else}--><span class="xg1">{lang moderate_need}</span><!--{/if}--></td></tr></table>
                <!--{/if}-->


此段調用於若是是特殊主題所顯示的方式
                        <!--{elseif $_G[forum_thread][special] == 1}-->
                                <!--{template forum/viewthread_poll}-->
                        <!--{elseif $_G[forum_thread][special] == 2}-->
                                <!--{template forum/viewthread_trade}-->
                        <!--{elseif $_G[forum_thread][special] == 3}-->
                                <!--{template forum/viewthread_reward}-->
                        <!--{elseif $_G[forum_thread][special] == 4}-->
                                <!--{template forum/viewthread_activity}-->
                        <!--{elseif $_G[forum_thread][special] == 5}-->
                                <!--{template forum/viewthread_debate}-->
1調用投票模版
2調用商品模版
3調用懸賞模版
4調用活動模版
5調用辯論模版

                                <!--{if $ad_a_pr}-->
                                        $ad_a_pr
                                <!--{/if}-->
調用於後臺設置的廣告帖子內容頁頭部位置

<!--{if $post['invisible'] != '-2' || $_G['forum']['ismoderator']}-->$post[message]<!--{else}--><span class="xg1">{lang moderate_need}</span><!--{/if}--></td></tr></table>
                <!--{/if}-->
若是帖子須要審核版主便顯示此信息 待審核

                        <div class="attach_nopermission">
                                <div>
                                        <h3>{lang attach_nopermission_notice}</h3>
                                        <p><!--{if $_G['uid']}-->{lang attach_nopermission}<!--{elseif $_G['connectguest']}-->{lang attach_nopermission_connect_fill_profile}<!--{else}-->{lang attach_nopermission_login} <!--{hook/global_login_text}--><!--{/if}--></p>
                                </div>
                        </div>


調用若是用戶不能查看圖片等 顯示須要登入的信息

<!--{elseif $post['imagelist'] || $post['attachlist']}-->
                        <div class="pattl">
                                <!--{if $post['imagelist'] && $_G['setting']['imagelistthumb'] && $post['imagelistcount'] >= $_G['setting']['imagelistthumb']}-->
                                        <!--{if !isset($imagelistkey)}-->
                                                <!--{eval $imagelistkey = rawurlencode(md5($_G[tid].'|100|100'))}-->
                                                <script type="text/javascript" reload="1">var imagelistkey = '$imagelistkey';</script>
                                        <!--{/if}-->
                                        <!--{eval $post['imagelistthumb'] = true;}-->
                                        <div class="bbda cl mtw mbm pbm">
                                                <strong>{lang more_images}</strong>
                                                <a href="javascript:;" class="xi2 attl_g">{lang image_small}</a>
                                                <a href="javascript:;" class="xi2 attl_m">{lang image_big}</a>
                                        </div>
                                        <div id="imagelist_$post[pid]" class="cl" style="display:none"><!--{echo showattach($post, 1)}--></div>
                                        <div id="imagelistthumb_$post[pid]" class="pattl_c cl"><img src="{IMGDIR}/loading.gif" width="16" height="16" class="vm" /> {lang image_list_openning}</div>
                                <!--{else}-->
                                        <!--{echo showattach($post, 1)}-->
                                <!--{/if}-->
                                <!--{if $post['attachlist']}-->
                                        <!--{echo showattach($post)}-->
                                <!--{/if}-->


調用於帖子內容頁多圖片橫排顯示的顯示方式

        <!--{if $post['first'] && $sticklist}-->
        <div>
                <h3 class="psth xs1">{lang replies_recommended}</h3>
                <!--{loop $sticklist $rpost}-->
                        <div class="pstl xs1">
                                <div class="psta"><a href="home.php?mod=space&uid=$rpost[authorid]" c="1">$rpost[avatar]</a></div>
                                <div class="psti">
                                        <p>
                                                <a href="home.php?mod=space&uid=$rpost[authorid]" class="xi2 xw1">$rpost[author]</a> <a href="javascript:;" class="xi2">{lang published_in_floor}</a>
                                                <!--{if $_G['group']['allowstickreply'] || $_G['forum_thread']['authorid'] == $_G['uid']}--> <a href="javascript:;" class="xi2">{lang admin_unstickreply}</a><!--{/if}-->
                                        </p>
                                        <div class="mtn">$rpost[message]</div>
                                </div>
                        </div>
                <!--{/loop}-->
        </div>
        <!--{/if}-->


調用於 做者 管理回帖者 置頂回帖的內容 所顯示的 回帖推薦

        <div id="comment_$post[pid]" class="cm">
        <!--{if $_G['setting']['commentnumber'] && !empty($comments[$post[pid]])}-->
                <h3 class="psth xs1">{lang comments}</h3>
                <!--{if $totalcomment[$post[pid]]}--><div class="pstl">$totalcomment[$post[pid]]</div><!--{/if}-->
                <!--{loop $comments[$post[pid]] $comment}-->
                        <div class="pstl xs1">
                                <div class="psta"><a href="home.php?mod=space&uid=$comment[authorid]" c="1">$comment[avatar]</a></div>
                                <div class="psti">
                                        <!--{if $comment['authorid']}-->
                                        <a href="home.php?mod=space&uid=$comment[authorid]" class="xi2 xw1">$comment[author]</a>
                                        <!--{else}-->
                                        {lang guest}
                                        <!--{/if}-->
                                         $comment[comment] 
                                        <!--{if $comment[rpid]}-->
                                                <a href="forum.php?mod=redirect&goto=findpost&pid=$comment[rpid]&ptid=$_G[tid]" class="xi2">{lang detail}</a>
                                                <a href="forum.php?mod=post&action=reply&fid=$_G[fid]&tid=$_G[tid]&repquote=$comment[rpid]&extra=$_GET[extra]&page=$page{if $_GET[from]}&from=$_GET[from]{/if}" class="xi2">{lang reply}</a>
                                        <!--{/if}-->
                                        <span class="xg1">
                                                {lang poston} <!--{date($comment[dateline], 'u')}-->
                                                <!--{if $comment['useip'] && $_G['group']['allowviewip']}--> IP comment[useip]<!--{/if}-->
                                                <!--{if $_G['forum']['ismoderator'] && $_G['group']['allowdelpost']}--> <a href="javascript:;">{lang delete}</a><!--{/if}-->
                                        </span>
                                </div>
                        </div>
                <!--{/loop}-->
                <!--{if $commentcount[$post[pid]] > $_G['setting']['commentnumber']}--><div class="pgs mbm cl"><div class="pg"><a href="javascript:;" class="nxt">{lang next_page}</a></div></div><!--{/if}-->
        <!--{/if}-->
        </div>


調用於 點評功能 中 有點評時所顯示的方式

        <!--{if !empty($post['ratelog'])}-->
                <dl id="ratelog_$post[pid]" class="rate{if !empty($_G['cookie']['ratecollapse'])} rate_collapse{/if}">
                        <!--{if $_G['setting']['ratelogon']}-->
                                <dd style="margin:0">
                        <!--{else}-->
                                <dt>
                                        <!--{if !empty($postlist[$post[pid]]['totalrate'])}-->
                                                <strong><a href="forum.php?mod=misc&action=viewratings&tid=$_G[tid]&pid=$post[pid]" title="{lang have}{echo count($postlist[$post[pid]][totalrate]);}{lang people_score}, {lang rate_view}"><!--{echo count($postlist[$post[pid]][totalrate]);}--></a></strong>
                                                <p><a href="forum.php?mod=misc&action=viewratings&tid=$_G[tid]&pid=$post[pid]">{lang rate_view}</a></p>
                                        <!--{/if}-->
                                </dt>
                                <dd>
                        <!--{/if}-->
                                <div id="post_rate_$post[pid]"></div>
                                <!--{if $_G['setting']['ratelogon']}-->
                                        <table class="ratl">
                                                <tr>
                                                        <th class="xw1" width="120"><a href="forum.php?mod=misc&action=viewratings&tid=$_G[tid]&pid=$post[pid]" title="{lang rate_view}">{lang have} <span class="xi1"><!--{echo count($postlist[$post[pid]][totalrate]);}--></span> {lang people_score}</a></th>
                                                        <!--{loop $post['ratelogextcredits'] $id $score}-->
                                                        <th width="50"><i>{$_G['setting']['extcredits'][$id][title]}</i></th>
                                                        <!--{/loop}-->
                                                        <th>
                                                                <a href="javascript:;" class="y xi2 op"><!--{if !empty($_G['cookie']['ratecollapse'])}-->{lang open}<!--{else}-->{lang pack}<!--{/if}--></a>
                                                                <i>{lang reason}</i>
                                                        </th>
                                                </tr>
                                                <tbody class="ratl_l">
                                                        <!--{loop $post['ratelog'] $uid $ratelog}-->
                                                        <tr id="rate_{$post[pid]}_{$uid}">
                                                                <td>
                                                                        <a href="home.php?mod=space&uid=$uid" target="_blank"><!--{echo avatar($uid, 'small');}--></a> <a href="home.php?mod=space&uid=$uid" target="_blank">$ratelog[username]</a>
                                                                </td>
                                                                <!--{loop $post['ratelogextcredits'] $id $score}-->
                                                                        <!--{if $ratelog['score'][$id] > 0}-->
                                                                                <td class="xi1"> + $ratelog[score][$id]</td>
                                                                        <!--{else}-->
                                                                                <td class="xg1">$ratelog[score][$id]</td>
                                                                        <!--{/if}-->
                                                                <!--{/loop}-->
                                                                <td class="xg1">$ratelog[reason]</td>
                                                        </tr>
                                                        <!--{/loop}-->
                                                </tbody>
                                        </table>
                                        <p class="ratc">
                                                {lang rate_total}: 
                                                <!--{loop $post['ratelogextcredits'] $id $score}-->
                                                        <!--{if $score > 0}-->
                                                                <span class="xi1">{$_G['setting']['extcredits'][$id][title]} + $score</span> 
                                                        <!--{else}-->
                                                                <span class="xg1">{$_G['setting']['extcredits'][$id][title]} $score</span> 
                                                        <!--{/if}-->
                                                <!--{/loop}-->
                                                 <a href="forum.php?mod=misc&action=viewratings&tid=$_G[tid]&pid=$post[pid]" title="{lang rate_view}" class="xi2">{lang rate_view}</a>
                                        </p>
                                <!--{else}-->
                                        <ul class="cl">
                                                <!--{loop $post['ratelog'] $uid $ratelog}-->
                                                        <li>
                                                                <p id="rate_{$post[pid]}_{$uid}" tip="<strong>$ratelog[reason]</strong> 
                                                                                <!--{loop $ratelog['score'] $id $score}-->
                                                                                        <!--{if $score > 0}-->
                                                                                                <em class='xi1'>{$_G['setting']['extcredits'][$id][title]} + $score $_G['setting']['extcredits'][$id][unit]</em>
                                                                                        <!--{else}-->
                                                                                                <span>{$_G['setting']['extcredits'][$id][title]} $score $_G['setting']['extcredits'][$id][unit]</span>
                                                                                        <!--{/if}-->
                                                                                <!--{/loop}-->" class="mtn mbn"><a href="home.php?mod=space&uid=$uid" target="_blank" class="avt"><!--{echo avatar($uid, 'small');}--></a></p>
                                                                <p><a href="home.php?mod=space&uid=$uid" target="_blank">$ratelog[username]</a></p>
                                                        </li>
                                                <!--{/loop}-->
                                        </ul>
                                <!--{/if}-->
                        </dd>
                </dl>
        <!--{else}-->
                <div id="post_rate_div_$post[pid]"></div>
        <!--{/if}-->
        <!--{/if}-->


此段直接調用 於 帖子有 評分 所顯示的方式及內容顯示等等(包括顯示評分理由及不顯示評分理由的版本)好了此次的模版代碼解脫就完了!!!

相關文章
相關標籤/搜索