묻고답하기

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 남기남
orangetree89 제목이 없는 페이지가 59%?  
코딩펀 댓글을 스큰 형태로 가져오는 방법을 찾고 있어요!  
다탱 메모장 스킨 모바일에선 엔터표시가 제대로 먹혀서 줄 바꾸기가 되는데 PC버전에선 그게 안돼요  
원이아빠 출석부모듈 시간조정 부분 php 가 어디인가요 ? [1] 2017.06.30 by HowtoXE
파란촌놈 악성 글이 너무 많이 올라와서... [1] file 2017.06.30 by HowtoXE
친절한상담원 xe게시판에 스팸글 지우는 방법을 좀 알려주세요. [1] file 2017.06.30 by HowtoXE
다탱 이거 도대체 왜이러는걸까요.. 방명록 스킨 댓글 수정 시 나타나는 창에 이상한 태그들이 자동으로 나타나요 file  
김병욱 위키의 마이그레이션이 가능한가요? [1] 2017.06.30 by HowtoXE
mkp9**** UI단을 부트스트랩으로 디자인 할 수 있는지 궁금합니다. [1] 2017.06.30 by HowtoXE
홍홍홍 홈페이지 외부 노출 관련 [1] 2017.06.30 by HowtoXE
친절한상담원 PHP5.5 게시판 스팸글 조치방법 [2] file 2017.06.30 by 친절한상담원
쪼꼬마니 업데이트 후 관리자 로그인이 안되요.. ㅠㅠ [1] file 2017.06.30 by Luatic™
튜닝셀프 로그인 에러가 뜹니다.  
꿈틀잉 사이트맵에서 게시판 링크 모듈이름이 갱신이 안됩니다.  
S#arp DoorWeb 레이아웃과 그외 질문 입니다. [1] file 2017.06.29 by S#arp
Miuna3 짧은주소 질문드립니다. [2] 2017.06.29 by 블루카이
보따리c28f1 스케치북 웹진형의 문의드립니다. file  
달리다굼 탭메뉴를 클릭하면 글자가 사라집니다. [2] 2017.06.29 by 달리다굼
Riri pdf를 새창열기 말고 다운로드되게 하고싶습니다. [1] file 2017.06.29 by sejin7940
zxt**** 스케치북 방명록에서 댓글 작성시 바로 확인하는법  
파란촌놈 게시판 스킨에 대한 질문입니다. [3] 2017.06.28 by 파란촌놈
KimTAJO nginx에서 access.log 살펴보신분 혹시 있으신가요?  
리즈러브 슬라이더 질문입니다.  
유주스토어2 스케치북 게시판의 목록화면에 글쓴이 부분의 영역을 늘리고 싶습니다. file  
운현 게시판 및 페이지 글쓰기/수정 오류 [1] file 2017.06.28 by sejin7940
koll**** 게시판 검색 내용(제목+내용, 내용)에 확장변수 추가 가능여부 문의 [1] 2017.06.28 by sejin7940
김남진 xe 경로지정 문의 [1] 2017.06.28 by sejin7940
LogosSound 안녕하세요 게시판 비밀번호 필수값 때문에 급하게 연락드립니다. [1] 2017.06.28 by sejin7940
초보덕 커뮤니티 레이아웃 추천 부탁합니다! [5] 2017.06.28 by 초보덕
스포츠인생 new 아이콘 관련 문재 file