묻고답하기

view_document 소스입니다. list1이라는 확장변수를 관리자만 보이게 하고 싶은데 어딜 수정해야 하나요?

 

 

<div class="boardRead">

    <div class="boardReadHeader">
        
        <div class="titleArea">
            <h3 class="title">
                <a href="{$oDocument->getPermanentUrl()}" style="font-size:{$module_info->title_font_size}px;padding-top:{$module_info->title_font_size/4}px;padding-bottom:{$module_info->title_font_size/4}px;">{$oDocument->getTitle()}</a>
                <!--@if($oDocument->get('category_srl'))-->
                <a href="{getUrl('category',$oDocument->get('category_srl'), 'document_srl', '')}" class="category" style="line-height:{$module_info->title_font_size}px;padding-top:{$module_info->title_font_size/4}px;padding-bottom:{$module_info->title_font_size/4}px;">{$category_list[$oDocument->get('category_srl')]->title}</a><!--@end-->
            </h3>
            <div class="buttonRight">
                <!--<a href="{$oDocument->getPermanentUrl()}" class="permaLink">{$oDocument->getPermanentUrl()}</a>-->
                <a href="{getUrl('document_srl','')}" class="buttonSmall"><span>{$lang->cmd_list}</span></a>
                <!--@if($oDocument->isEditable())-->
                    <a href="{getUrl('act','dispBoardWrite','document_srl',$oDocument->document_srl,'comment_srl','')}" class="buttonSmall"><span>{$lang->cmd_modify}</span></a>
                    <a href="{getUrl('act','dispBoardDelete','document_srl',$oDocument->document_srl,'comment_srl','')}" class="buttonSmall"><span>{$lang->cmd_delete}</span></a>
                <!--@end-->
            </div>
        </div>
        
        <div class="authorArea">
        <!--@if($module_info->display_author!='N')-->
            <!--@if(!$oDocument->getMemberSrl())-->
                <!--@if($oDocument->isExistsHomepage())-->
                    <a href="{$oDocument->getHomepageUrl()}" onclick="window.open(this.href);return false;" class="author">{$oDocument->getNickName()}</a>
                <!--@else-->
                    <span class="author">{$oDocument->getNickName()}</span>
                <!--@end-->
            <!--@else-->
                <a href="#popup_menu_area" class="member_{$oDocument->get('member_srl')} author" onclick="return false">{$oDocument->getNickName()}</a>
            <!--@end-->
            <!--@if($module_info->display_ip_address == "Y" || $grant->manager)-->
                <span class="ipAddress"> ({$oDocument->getIpaddress()})</span>
            <!--@end-->
        <!--@end-->
            <span class="sum" style="margin-left:-10px;"|cond="$module_info->display_author=='N'">
                <span class="date">{$oDocument->getRegdate('Y-m-d H:i')}</span>
                <!--@if(array_key_exists('readed_count', $list_config))-->
                <span class="read">{$lang->readed_count} <span class="num">{$oDocument->get('readed_count')}</span></span>
                <!--@end-->
                <span class="vote">{$lang->comment_count} <span class="num">{$oDocument->get('comment_count')}</span></span>
                <!--@if(array_key_exists('voted_count', $list_config))-->
                    <span class="vote">{$lang->voted_count} <span class="num">{$oDocument->get('voted_count')}</span></span>
                <!--@end-->
            </span>
        <!--@if($module_info->display_rating != "N")-->
            {@$max_count=(int)$oDocument->get('voted_count')-(int)$oDocument->get('blamed_count')}
            <!--@if($max_count!=0)-->
            {@$voted_percent=(int)(($oDocument->get('voted_count')*100/$max_count))}
            {@$blamed_percent = 100 - $voted_percent}
            <div class="ratingBox <!--@if($module_info->display_rating == "bar")-->typeBar<!--@elseif($module_info->display_rating == "star")-->typeStar<!--@end-->">
            <table class="<!--@if($module_info->display_rating == "bar")-->emtpyBar<!--@elseif($module_info->display_rating == "star")-->emtpyStar<!--@end-->" title="추천수 {$oDocument->get('voted_count')} / 비추천수 {$oDocument->get('blamed_count')*-1}">
                <tr>
                    <!--@if($voted_percent>0)--><td width="{$voted_percent}%" class="rating"></td><!--@endif-->
                    <!--@if($blamed_percent>0)--><td width="{$blamed_percent}%"></td><!--@endif-->
                </tr>
            </table>
            </div>
            <!--@endif-->
        <!--@end-->
        </div>
    </div>
    {@ $temp = null;}
    <!--@foreach($oDocument->getExtraVars() as $key => $val)-->
        {@ $temp.= $val->getValueHTML();}
    <!--@end-->

    <!--@if($oDocument->isExtraVarsExists() && (!$oDocument->isSecret() || $oDocument->isGranted()) && $module_info->display_extravars == "top" )-->
    <div class="extraVars" cond="$temp">
        <table border="1" cellspacing="0" summary="Extra Form" class="extraVarsList">
        <!--@foreach($oDocument->getExtraVars() as $key => $val)-->
        <tr cond="$val->getValueHTML()">
            <th>{$val->name}</th>
            <td>{$val->getValueHTML()}</td>
        </tr>

        <!--@end-->
        </table>
    </div>
    <!--@end-->

    <div class="boardReadBody">
        <!--@if($oDocument->isSecret() && !$oDocument->isGranted())-->
            <div class="secretMessage">
                <form action="./" method="get" onsubmit="return procFilter(this, input_password)">
                <input type="hidden" name="mid" value="{$mid}" />
                <input type="hidden" name="page" value="{$page}" />
                <input type="hidden" name="document_srl" value="{$oDocument->document_srl}" />

                    <p class="isSecret">{$lang->msg_is_secret}</p>
                    <dl>
                        <dt><label for="cpw">{$lang->password}</label></dt>
                        <dd><input type="password" name="password" id="cpw" class="inputText" /><span class="buttonOfficial"><input type="submit" value="{$lang->cmd_input}" /></span></dd>
                    </dl>

                </form>
            </div>
        <!--@else-->
            <!--@if($module_info->display_reaction=='text_style')-->
                {$oDocument->getContent()}
            <!--@else-->
                {$oDocument->getContent(false)}
            <!--@end-->
        <!--@end-->

    </div>

    <!--@if($oDocument->isExtraVarsExists() && (!$oDocument->isSecret() || $oDocument->isGranted()) && $module_info->display_extravars == "bottom" )-->
    <div class="extraVars" cond="$temp">
        <table border="1" cellspacing="0" summary="Extra Form" class="extraVarsList">
        <!--@foreach($oDocument->getExtraVars() as $key => $val)-->
        <tr cond="$val->getValueHTML()">
            <th>{$val->name}</th>
            <td>{$val->getValueHTML()}</td>
        </tr>
        <!--@end-->
        </table>
    </div>
    <!--@end-->

    <div class="boardReadFooter">
    
        <!--@if($module_info->display_sign != 'N' && ($oDocument->getProfileImage() || $oDocument->getSignature()))-->
            <div class="memberSignature">
            <!--@if($oDocument->getProfileImage())-->
                <img src="{$oDocument->getProfileImage()}" alt="profile" class="profile"<!--@if($module_info->profile_width)--> width="{$module_info->profile_width}" height="{$module_info->profile_width}"<!--@else--> width="50" height="50"<!--@end--> align="left" />
            <!--@end-->
            <!--@if($oDocument->getSignature())-->
                {$oDocument->getSignature()}
            <!--@end-->
            </div>
        <!--@end-->
        
        {@ $tag_list = $oDocument->get('tag_list') }
        <!--@if(count($tag_list))-->
        <dl class="tag">
            <dt><img src="./img/{$module_info->colorset}/iconTag.gif" width="29" height="29" alt="{$lang->tag}" title="{$lang->tag}" /></dt>
            <!--@for($i=0,$c=count($tag_list);$i<$c;$i++)-->
                {@ $tag = $tag_list[$i]; }
                <dd><a href="{getUrl('search_target','tag','search_keyword',$tag,'document_srl','')}" rel="tag">{htmlspecialchars($tag)}</a><!--@if($i<$c-1)-->, <!--@end--></dd>
            <!--@end-->
        </dl>
        <!--@end-->
        
        <!--@if(!$oDocument->getTrackbackCount()&&$module_info->display_trackback=='Y')-->
        <dl class="trackbackURL">
            <dt><img src="./img/{$module_info->colorset}/iconTrackback.gif" width="29" height="29" alt="{$lang->trackback}" title="{$lang->trackback}" /></dt>
            <dd><a href="{$oDocument->getTrackbackUrl()}" onclick="return false;">{$oDocument->getTrackbackUrl()}</a></dd>
        </dl>
        <!--@end-->
        <!--@if($oDocument->hasUploadedFiles()&&$module_info->display_files=='Y')-->
        <dl class="attachedFile">
            <dt><img src="./img/{$module_info->colorset}/iconFiles.gif" width="29" height="29" alt="{$lang->uploaded_file}({$oDocument->get('uploaded_count')})" title="{$lang->uploaded_file}({$oDocument->get('uploaded_count')})" /></dt>
            <dd>
                <ul class="files">
                    {@ $uploaded_list = $oDocument->getUploadedFiles() }
                    <!--@foreach($uploaded_list as $key => $file)-->
                    <li><a href="{getUrl('')}{$file->download_url}">{$file->source_filename} <span class="bubble">[File Size:{FileHandler::filesize($file->file_size)}/Download:{number_format($file->download_count)}]</span></a></li>
                    <!--@end-->
                </ul>
            </dd>
        </dl>
        <!--@end-->
        
    </div>

    <div class="boardNavigation">
        <!--@if($module_info->default_style != 'blog')-->
        <ul class="reaction">
            <!--@if($module_info->display_reaction=='button_style')-->
                <li><a href="#" onclick="doCallModuleAction('document','procDocumentVoteUp','{$document_srl}');return false;" title="{$lang->cmd_vote}" class="vote" cond="$is_logged&&(!$oDocument->isEditable()||$grant->manager)"><span>{$menu_str = Context::getLang('cmd_vote')}</span></a></li>
                <li><a href="#" onclick="doCallModuleAction('document','procDocumentVoteDown','{$document_srl}');return false;" title="{$lang->cmd_vote_down}" class="hate" cond="$is_logged&&(!$oDocument->isEditable()||$grant->manager)"><span>{$menu_str = Context::getLang('cmd_vote_down')}</span></a></li>
                <li><a href="#" onclick="doCallModuleAction('document','procDocumentDeclare','{$document_srl}');return false;" title="{$lang->cmd_declare}" class="declare" cond="$is_logged"><span>{$menu_str = Context::getLang('cmd_declare')}</span></a></li>
                <li><a href="#" onclick="doCallModuleAction('member','procMemberScrapDocument','{$document_srl}'); return false;" title="{$lang->cmd_scrap}" class="scrap"><span>{$menu_str = Context::getLang('cmd_scrap')}</span></a></li>
                <li><a href="{getUrl('act','dispDocumentPrint')}" onclick="window.open(this.href);return false;" title="{$lang->cmd_print}" class="print"><span>{$menu_str = Context::getLang('cmd_print')}</span></a></li>
            <!--@end-->
        </ul>
        <!--@end-->
        <div class="buttonRight">
            <a href="{getUrl('document_srl','')}" class="buttonOfficial"><span>{$lang->cmd_list}</span></a>
            <!--@if($oDocument->isEditable())-->
                <a href="{getUrl('act','dispBoardWrite','document_srl',$oDocument->document_srl,'comment_srl','')}" class="buttonOfficial"><span>{$lang->cmd_modify}</span></a>
                <a href="{getUrl('act','dispBoardDelete','document_srl',$oDocument->document_srl,'comment_srl','')}" class="buttonOfficial"><span>{$lang->cmd_delete}</span></a>
            <!--@end-->
        </div>
    </div>

</div>

<!--@if($oDocument->allowTrackback())-->
    <!--#include("./trackback.html")-->
<!--@end-->

<!--@if($oDocument->allowComment())-->
<div class="boardComment">
    <a name="comment"></a>
    <!--@if($module_info->socialxe_comment !== "Y")-->
        <!--#include("./comment.html")-->
        <!--@if($grant->write_comment && $oDocument->isEnableComment())-->
            <form action="./" method="post" onsubmit="jQuery(this).find('input').each(function(){if(this.title==this.value)this.value='';});return procFilter(this, insert_comment)" class="boardEditor" >
            <input type="hidden" name="mid" value="{$mid}" />
            <input type="hidden" name="document_srl" value="{$oDocument->document_srl}" />
            <input type="hidden" name="comment_srl" value="" />
            <input type="hidden" name="content" value="" />
                <div class="boardWrite commentEditor">
                    <div class="editor">{$oDocument->getCommentEditor()}</div>
                    <div class="editorOption">
                    <!--@if(!$is_logged)-->
                       <input type="text" name="nick_name" class="inputText userName" value="{$lang->writer}"  title="{$lang->writer}" onfocus="if(this.value==this.title)this.value='';return false;" />
                       <input type="password" name="password" class="inputText userPw" value="{$lang->password}" title="{$lang->password}" onfocus="if(this.value==this.title)this.value='';return false;" />
                       <input type="text" name="email_address" class="inputText emailAddress" value="{$lang->email_address}" title="{$lang->email_address}" onfocus="if(this.value==this.title)this.value='';return false;" />
                       <input type="text" name="homepage" class="inputText homePage" value="{$lang->homepage}" title="{$lang->homepage}" onfocus="if(this.value==this.title)this.value='';return false;" />
                    <!--@end-->

                    <!--@if($is_logged)-->
                        <input type="checkbox" name="notify_message" value="Y" id="notify_message" class="inputCheck" />
                        <label for="notify_message">{$lang->notify}</label>
                    <!--@end-->
                        <input type="checkbox" name="is_secret" value="Y" id="is_secret" class="inputCheck" />
                        <label for="is_secret">{$lang->secret}</label>
                    </div>
            
                    <div class="boardNavigation">
                        <span class="buttonOfficial"><input type="submit" value="{$lang->cmd_comment_registration}" accesskey="s" /></span>
                    </div>
                </div>
            </form>
        <!--@end-->
    <!--@else-->
        <div class="socialComment">
            <img class="zbxe_widget_output" widget="socialxe_comment" skin="<!--@if($module_info->socialxe_comment == 'cimple')-->ppAward<!--@else-->default<!--@end-->" colorset="white" document_srl="{$oDocument->document_srl}" content_link="{getFullUrl('', 'document_srl', $oDocument->document_srl, 'dummy', '1')}" content_title="{htmlspecialchars($oDocument->getTitleText())}" enter_send="N"  auto_view_sub="Y" />
        </div>
    <!--@end-->
</div>

<!--@end-->

글쓴이 제목 최종 글
XE 공지 글 쓰기,삭제 운영방식 변경 공지 [16] 2019.03.05 by 남기남
보보2 회원정보 수정 시, 특정 컬럼이 나오지 않게 하려면 어떻게 해야할까요? [2] file 2017.07.17 by 보보2
키킥 제작의뢰 댓글 [3] 2017.07.17 by 임재영
파란v 제작의뢰 게시글에 댓글달려면? [3] 2017.07.17 by 임재영
루씨유 doorweb_v4로 제작된 사이트인데요 서브페이지 제목을 바꾸는 방법을 모르겠습니다. [2] file 2017.07.17 by 루씨유
구월 xe폴더에서 게시판 위치 [1] 2017.07.17 by DoorWeb
튜닝셀프 bj람보님 출석부에서 버튼 사이즈를 조정하려면 어디서 수정해야 하나요? [2] file 2017.07.17 by 튜닝셀프
동행교회 phpMyAdmin 설정 스토리지가 완전히 설정되지 않아 file  
홈런볼11 회원 정보 일부 숨기기 [1] 2017.07.17 by fafaz
차나왕 갑자기 댓글 칸 이 활성화가 안되어있는데요 [1] file 2017.07.17 by fafaz
adnote 네이버 기사에 있는 아이콘 평가 기능을 구현하려고 합니다. [1] file 2017.07.17 by DoorWeb
루틸 안녕하세요 처음 질문드립니다(경로변경문제) [2] 2017.07.16 by 루틸
크르릉33 1.7] 닉네임, 메일 등 수정,변경 금지 [14] 2017.07.16 by 보보2
Jiwon A2 호스팅(싱가포르) XE 구동안됨 도와주세요. [2] file 2017.07.15 by Jiwon
ksm**** simplestrap...콘텐츠 영영 조정관련 [3] 2017.07.14 by DoorWeb
펠릭스719af 서버 하드용량이 부족으로 http500오류 이후 사이트 복구방법 [1] 2017.07.14 by sejin7940
ksm**** 본문 글자크기 오류 수정방법?? [4] 2017.07.14 by ksm****
황정혁 XE1 기본형 첫화면 수정하기 [3] file 2017.07.14 by 황정혁
pssaz2075 xe 처음 사용하는데 에러가..  
영신 회원추가가 왜 안될까요?  
홍수영 XE 파일첨부 불가 문제  
김흥진 관리자로 사이트 메뉴 편집시 바로 반영 안되는 문제 [2] 2017.07.13 by 라돌체
씨지크 xe_tags 테이블에 태그를 등록하는 방법 문의드립니다.ㅠㅠ [3] 2017.07.13 by sejin7940
브랜든a XE 사이트에 해외결제시스템 [1] 2017.07.13 by sejin7940
홈런볼11 관리자 접근시 특정 ip 만 접근 허용 [1] 2017.07.13 by sejin7940
뚜니 xe 설치후 어제까지 작업했는데 오늘 화면이 하얀색으로 file  
조단바 파일업로드 용량 [2] 2017.07.13 by 조단바
라이언 SSL 질문 드립니다  
sheis**** XE 게시판 권한(윅스 홈페이지 사용중)  
★키메라★ 호스팅업체 랜섬웨어로인해 관리자페이지 접속에러 [1] 2017.07.12 by Luatic™
내손을잡아요 [코어 ] XpressEngine ver. 1.8.42 - 업데이트 오류 [2] 2017.07.12 by 내손을잡아요