xe_guestbook 게시판 방명록 스킨 추가
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3559 201d5d3c-b55e-5fd7-737f-ddc643e51545
|
|
@ -25,6 +25,8 @@
|
|||
$obj->module_srl = $this->module_srl;
|
||||
if($obj->is_notice!='Y'||!$this->grant->manager) $obj->is_notice = 'N';
|
||||
|
||||
if(!$obj->title) $obj->title = cut_str(strip_tags($obj->content),20,'...');
|
||||
|
||||
// 관리자가 아니라면 게시글 색상/굵기 제거
|
||||
if(!$this->grant->manager) {
|
||||
unset($obj->title_color);
|
||||
|
|
|
|||
|
|
@ -296,6 +296,34 @@
|
|||
$this->setTemplateFile('delete_form');
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 댓글의 답글 화면 출력
|
||||
**/
|
||||
function dispBoardWriteComment() {
|
||||
$document_srl = Context::get('document_srl');
|
||||
|
||||
// 권한 체크
|
||||
if(!$this->grant->write_comment) return $this->dispBoardMessage('msg_not_permitted');
|
||||
|
||||
// 원본글을 구함
|
||||
$oDocumentModel = &getModel('document');
|
||||
$oDocument = $oDocumentModel->getDocument($document_srl);
|
||||
if(!$oDocument->isExists()) return $this->dispBoardMessage('msg_invalid_request');
|
||||
|
||||
// 해당 댓글를 찾아본다 (comment_form을 같이 쓰기 위해서 빈 객체 생성)
|
||||
$oCommentModel = &getModel('comment');
|
||||
$oSourceComment = $oComment = $oCommentModel->getComment(0);
|
||||
$oComment->add('document_srl', $document_srl);
|
||||
$oComment->add('module_srl', $this->module_srl);
|
||||
|
||||
// 필요한 정보들 세팅
|
||||
Context::set('oDocument',$oDocument);
|
||||
Context::set('oSourceComment',$oSourceComment);
|
||||
Context::set('oComment',$oComment);
|
||||
|
||||
$this->setTemplateFile('comment_form');
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 댓글의 답글 화면 출력
|
||||
**/
|
||||
|
|
|
|||
|
|
@ -37,6 +37,7 @@
|
|||
<permission action="dispBoardTagList" target="manager" />
|
||||
<permission action="dispBoardWrite" target="manager" />
|
||||
<permission action="dispBoardDelete" target="manager" />
|
||||
<permission action="dispBoardWriteComment" target="manager" />
|
||||
<permission action="dispBoardReplyComment" target="manager" />
|
||||
<permission action="dispBoardModifyComment" target="manager" />
|
||||
<permission action="dispBoardDeleteComment" target="manager" />
|
||||
|
|
@ -73,6 +74,7 @@
|
|||
<action name="dispBoardTagList" type="view" />
|
||||
<action name="dispBoardWrite" type="view" />
|
||||
<action name="dispBoardDelete" type="view" />
|
||||
<action name="dispBoardWriteComment" type="view" />
|
||||
<action name="dispBoardReplyComment" type="view" />
|
||||
<action name="dispBoardModifyComment" type="view" />
|
||||
<action name="dispBoardDeleteComment" type="view" />
|
||||
|
|
|
|||
88
modules/board/skins/xe_guestbook/comment.html
Normal file
|
|
@ -0,0 +1,88 @@
|
|||
<!--@if($oDocument->getCommentCount())-->
|
||||
<div class="replyBox">
|
||||
|
||||
{@ $_comment_list = $oDocument->getComments() }
|
||||
<!--@foreach($_comment_list as $key => $comment)-->
|
||||
|
||||
<div class="replyItem <!--@if($comment->get('depth'))-->reply<!--@end-->">
|
||||
<!--@if($comment->get('depth'))-->
|
||||
<div style="margin-left:{($comment->get('depth')-1)*20}px" class="replyIndent">
|
||||
<!--@end-->
|
||||
|
||||
<a name="comment_{$comment->comment_srl}"></a>
|
||||
|
||||
<div class="replyOption">
|
||||
<!--@if($comment->isGranted())-->
|
||||
<a href="{getUrl('act','dispBoardDeleteComment','comment_srl',$comment->comment_srl)}"><img src="./images/common/buttonDeleteX.gif" alt="{$lang->cmd_delete}" width="12" height="13" /></a>
|
||||
<a href="{getUrl('act','dispBoardModifyComment','comment_srl',$comment->comment_srl)}"><img src="./images/{$module_info->colorset}/buttonModifyE.gif" alt="{$lang->cmd_modify}" width="20" height="17" /></a>
|
||||
<!--@end-->
|
||||
<a href="{getUrl('act','dispBoardReplyComment','comment_srl',$comment->comment_srl)}"><img src="./images/{$module_info->colorset}/buttonReply.gif" alt="{$lang->cmd_reply}" width="20" height="17" /></a>
|
||||
</div>
|
||||
|
||||
<div class="date">
|
||||
|
||||
<strong>{$comment->getRegdate('Y.m.d')}</strong> {$comment->getRegdate('H:i:s')}
|
||||
|
||||
<!--@if($grant->is_admin)-->
|
||||
({$comment->get('ipaddress')})
|
||||
<!--@end-->
|
||||
</div>
|
||||
|
||||
<div class="author">
|
||||
<!--@if(!$comment->member_srl)-->
|
||||
<!--@if($comment->homepage)-->
|
||||
<a href="{$comment->homepage}" onclick="window.open(this.href);return false;">{$comment->getNickName()}</a>
|
||||
<!--@else-->
|
||||
{$comment->getNickName()}
|
||||
<!--@end-->
|
||||
<!--@else-->
|
||||
<div class="member_{$comment->member_srl}">{$comment->getNickName()}</div>
|
||||
<!--@end-->
|
||||
</div>
|
||||
|
||||
<!--@if($comment->get('voted_count')!=0)-->
|
||||
<div class="voted">
|
||||
({$lang->voted_count}:
|
||||
<strong>{$comment->get('voted_count')}</strong>)
|
||||
</div>
|
||||
<!--@end-->
|
||||
|
||||
<div class="clear"></div>
|
||||
|
||||
<div class="replyContent">
|
||||
<!--@if(!$comment->isAccessible())-->
|
||||
<!--%import("filter/input_password.xml")-->
|
||||
<div class="secretContent">
|
||||
<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="{$comment->get('document_srl')}" />
|
||||
<input type="hidden" name="comment_srl" value="{$comment->get('comment_srl')}" />
|
||||
<div class="title">{$lang->msg_is_secret}</div>
|
||||
<div class="content"><input type="password" name="password" class="inputTypeText" /><span class="button"><input type="submit" value="{$lang->cmd_input}" accesskey="s" /></span></div>
|
||||
</form>
|
||||
</div>
|
||||
<!--@else-->
|
||||
{$comment->getContent(false,false)}
|
||||
<!--@end-->
|
||||
</div>
|
||||
|
||||
<!--@if($comment->hasUploadedFIles())-->
|
||||
<div class="fileAttached">
|
||||
<ul>
|
||||
{@ $_uploaded_files = $comment->getUploadedFiles() }
|
||||
<!--@foreach($_uploaded_files as $key => $file)-->
|
||||
<li><a href="{getUrl('')}{$file->download_url}">{$file->source_filename} ({FileHandler::filesize($file->file_size)})({number_format($file->download_count)})</a></li>
|
||||
<!--@end-->
|
||||
</ul>
|
||||
</div>
|
||||
<!--@end-->
|
||||
|
||||
<!--@if($comment->get('depth'))-->
|
||||
</div>
|
||||
<!--@end-->
|
||||
</div>
|
||||
<!--@end-->
|
||||
|
||||
</div>
|
||||
<!--@end-->
|
||||
66
modules/board/skins/xe_guestbook/comment_form.html
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
<!--#include("header.html")-->
|
||||
|
||||
<!-- 만약 댓글의 답을 다는 것이라면 원문 보여줌 -->
|
||||
<!--@if($oSourceComment && $oSourceComment->isExists())-->
|
||||
<div class="replyBox">
|
||||
<div class="replyItem">
|
||||
<div class="author"><div class="member_{$oSourceComment->getMemberSrl()}">{$oSourceComment->getNickName()}</div></div>
|
||||
<div class="date">
|
||||
{$oSourceComment->getRegdate("Y.m.d H:i")}
|
||||
<!--@if($grant->is_admin)-->
|
||||
({$oSourceComment->get('ipaddress')})
|
||||
<!--@end-->
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
|
||||
<div class="replyContent gap1">
|
||||
{$oSourceComment->getContent(false)}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--@end-->
|
||||
|
||||
<!-- 글쓰기 폼 -->
|
||||
<!--%import("filter/insert_comment.xml")-->
|
||||
<form action="./" method="post" onsubmit="return procFilter(this, insert_comment)" class="boardEditor" >
|
||||
<input type="hidden" name="mid" value="{$mid}" />
|
||||
<input type="hidden" name="document_srl" value="{$oComment->get('document_srl')}" />
|
||||
<input type="hidden" name="comment_srl" value="{$oComment->get('comment_srl')}" />
|
||||
<input type="hidden" name="content" value="{htmlspecialchars($oComment->get('content'))}" />
|
||||
<input type="hidden" name="parent_srl" value="{$oComment->get('parent_srl')}" />
|
||||
|
||||
<div class="boardWrite commentEditor">
|
||||
|
||||
<div class="userNameAndPw">
|
||||
<!--@if(!$is_logged)-->
|
||||
<label for="userName">{$lang->writer}</label>
|
||||
<input type="text" name="nick_name" value="{$oComment->get('nick_name')}" class="userName inputTypeText" id="userName"/>
|
||||
|
||||
<label for="userPw">{$lang->password}</label>
|
||||
<input type="password" name="password" value="" id="userPw" class="userPw inputTypeText" />
|
||||
|
||||
<label for="emailAddress">{$lang->email_address}</label>
|
||||
<input type="text" name="email_address" value="{htmlspecialchars($oComment->get('email_address'))}" id="emailAddress" class="emailAddress inputTypeText"/>
|
||||
|
||||
<label for="homePage">{$lang->homepage}</label>
|
||||
<input type="text" name="homepage" value="{htmlspecialchars($oComment->get('homepage'))}" id="homePage" class="homePage inputTypeText"/>
|
||||
<!--@else-->
|
||||
<input type="checkbox" name="notify_message" value="Y" <!--@if($oComment->useNotify())-->checked="checked"<!--@end--> id="notify_message" />
|
||||
<label for="notify_message">{$lang->notify}</label>
|
||||
<!--@end-->
|
||||
|
||||
<input type="checkbox" name="is_secret" value="Y" <!--@if($oComment->isSecret())-->checked="checked"<!--@end--> id="is_secret" />
|
||||
<label for="is_secret">{$lang->secret}</label>
|
||||
</div>
|
||||
|
||||
<div class="editor">{$oComment->getEditor()}</div>
|
||||
</div>
|
||||
|
||||
<div class="commentButton tRight">
|
||||
<span class="button"><input type="button" value="{$lang->cmd_back}" onclick="location.href='{getUrl('act','')}'"/></span>
|
||||
<span class="button"><input type="submit" value="{$lang->cmd_comment_registration}" accesskey="s" /></span>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
<!--#include("footer.html")-->
|
||||
283
modules/board/skins/xe_guestbook/css/common.css
Normal file
|
|
@ -0,0 +1,283 @@
|
|||
@charset "utf-8";
|
||||
|
||||
/*
|
||||
NHN UIT Lab. WebStandardization Team (http://html.nhndesign.com/)
|
||||
Jeong, Chan Myeong 070601~070630
|
||||
*/
|
||||
|
||||
/**
|
||||
* Header
|
||||
**/
|
||||
|
||||
/* board Title */
|
||||
.boardHeader { border:1px solid #e1e1dd; border-bottom:0; background:#ffffff url(../images/common/bgH3.gif) repeat-x left bottom; overflow:hidden;}
|
||||
.boardHeader .boardHeaderBorder { width:100%;}
|
||||
.boardHeader h3 { float:left; padding:15px 15px 12px 15px; font-size:1.2em; background:#ffffff url(../images/common/lineH3.gif) no-repeat right bottom;}
|
||||
|
||||
/* board Description */
|
||||
.boardDescription { color:#AEAEAE; border:1px solid #DDDDDD; overflow:hidden; padding:10px; margin-top:5px; background-color:#FFFFFF;}
|
||||
|
||||
/* board Information */
|
||||
.boardInformation { width:100%; clear:both; margin:10px 0 2px 0; overflow:hidden; color:#666666;}
|
||||
.articleNum { float:left; padding:0 0 0 15px; }
|
||||
|
||||
/* account Navigation */
|
||||
.accountNavigation { float:right; }
|
||||
.accountNavigation li { float:left; margin-left:7px; list-style:none; }
|
||||
.accountNavigation li a { white-space:nowrap; color:#666666; text-decoration:none;}
|
||||
.accountNavigation li.setup a { background:url(../images/common/iconSetup.gif) no-repeat left top; padding-left:14px; }
|
||||
.accountNavigation li.admin a { background:url(../images/common/iconAdmin.gif) no-repeat left top; padding-left:12px; }
|
||||
.accountNavigation li.listType { margin-left:5px; }
|
||||
.accountNavigation li.loginAndLogout a { background:url(../images/common/line_1x10_e0e0e0.gif) no-repeat left 2px; padding-left:8px; }
|
||||
|
||||
/* secret Content */
|
||||
.secretContent { margin:20px auto; text-align:center; border:1px solid #EFEFEF; width:240px; }
|
||||
.secretContent .title { padding:10px 0 10px 0; background-color:#EFEFEF; display:block; font-weight:bold; }
|
||||
.secretContent .content { padding:10px 0 10px 0; background-color:#FFFFFF; display:block; }
|
||||
|
||||
/* blog Style Notice */
|
||||
.blogNotice { margin-bottom:10px; padding:5px; border:1px solid #e0e1db;}
|
||||
.blogNotice .item { background:url("../images/common/notice.gif") no-repeat -2px 3px; padding:3px 0 3px 18px; }
|
||||
.blogNotice .item .date { font-family:verdana; font-size:.9em;color:#AAAAAA; }
|
||||
.blogNotice .item a { text-decoration:none; color:#444444; }
|
||||
.blogNotice .item a:hover { text-decoration:underline}
|
||||
.blogNotice .item .replyAndTrackback { color:#AAAAAA; font-size:.9em; }
|
||||
|
||||
/* boardRead */
|
||||
.viewDocument { border:1px solid #e0e1db; padding:10px; border-bottom:2px solid #AAAAAA; margin-bottom:20px; }
|
||||
|
||||
.boardRead .contentInfo .userInfo { float:left; white-space:nowrap; }
|
||||
.boardRead .contentInfo .userInfo .author { color:#3074a5; }
|
||||
.boardRead .contentInfo .userInfo .author a { font-size:.9em; color:#3074a5; text-decoration:none; }
|
||||
|
||||
.boardRead .contentInfo { clear:both; white-space:nowrap; color:#444444; float:left; font-size:.9em; font-family:tahoma; line-height:17px; padding-bottom:10px; width:100%;}
|
||||
.boardRead .contentInfo .date { float:right; background:url("../images/common/calendar.gif") no-repeat left top; padding-left:18px; margin-left:10px; }
|
||||
|
||||
/* extraVars list */
|
||||
.boardRead .extraVarsList { width:100%; border:1px solid #e0e1db; border-bottom:none; margin:0 0 5px 0; table-layout:fixed;}
|
||||
.boardRead .extraVarsList th { font-weight:normal; color:#555555; text-align:left; padding:4px 0 4px 10px; border-bottom:1px solid #e0e1db; border-right:1px solid #e0e1db;}
|
||||
.boardRead .extraVarsList td { color:#555555; border-bottom:1px solid #e0e1db; padding:4px 0 4px 10px; }
|
||||
.boardRead .extraVarsList td a { color:#555555; }
|
||||
|
||||
.boardRead .readBody { color:#555555; }
|
||||
.boardRead .readBody .contentBody .ipaddress { text-align:right; margin-top:10px; color:#bbbbbb; font-family:tahoma;}
|
||||
|
||||
.boardRead .fileAttached { border:1px solid #EFEFEF; background-color:#F4F4F4; padding:5px; margin-top:10px;}
|
||||
.boardRead .fileAttached h5 { font-weight:normal; color:#999999; font-size:1em; line-height:22px;}
|
||||
.boardRead .fileAttached li { display:inline; white-space:nowrap margin:3px 5px 0 3px; list-style:none; }
|
||||
.boardRead .fileAttached li a { text-decoration:none; font-size:.9em; padding:0 0 2px 17px; white-space:nowrap; color:#444444; }
|
||||
.boardRead .fileAttached li a:visited { color:#777777;}
|
||||
|
||||
.boardRead .contentButton { text-align:right;padding-top:10px;}
|
||||
|
||||
.trackbackBox { padding:.6em .6em; color:#666666; border:1px solid #e0e1db;;margin-top:.5em; }
|
||||
.trackbackBox .trackbackUrl { color:#1F3DAE; font-size:.9em; background:url("../images/common/iconTrackback.gif") no-repeat left top; padding-left:18px; margin:0 0 3px 10px; }
|
||||
.trackbackBox .trackbackItem { background-color:#F3F3F3; padding:.6em .8em .6em .6em; line-height:1.25em; border-top:1px dotted #EEEEEE; list-style:none;}
|
||||
.trackbackBox p { display:inline; margin-bottom:1em;}
|
||||
.trackbackBox a { color:#666666; text-decoration:none;}
|
||||
.trackbackBox div { clear:both; }
|
||||
.trackbackBox address { display:block; padding:0 .3em 0 0; }
|
||||
.trackbackBox address a { font-size:.9em; color:#3074a5; margin-right:.3em; float:left;}
|
||||
.trackbackBox address .date { font:.8em Tahoma; color:#cccccc; float:right;}
|
||||
|
||||
.replyBox { color:#666666; border-top:1px solid #e0e1db; margin-top:.5em;}
|
||||
.replyBox .replyItem { background-color:#FFFFFF; padding:.6em .8em .6em .6em; line-height:1.25em; clear:both; border-bottom:1px dotted #EEEEEE; list-style:none;}
|
||||
.replyBox p { display:inline; margin-bottom:1em;}
|
||||
.replyBox .author { float:left; padding:0 .3em 0 0; font-size:.9em; color:#3074a5; margin:0 .3em .5em 0;}
|
||||
.replyBox .author a { color:#3074a5; margin-right:.3em; text-decoration:none; }
|
||||
.replyBox .voted { float:left; font-size:.9em; color:#AAAAAA; margin:0 .3em .5em 1em;}
|
||||
.replyBox .date { float:right; font:.8em Tahoma; color:#cccccc; margin:.3em 0 .5em 0;}
|
||||
|
||||
.replyBox .replyOption { height:20px; float:right; white-space:nowrap; margin-left:.2em;}
|
||||
.replyBox .replyOption img { vertical-align:middle;}
|
||||
|
||||
.replyBox .replyContent { clear:left; }
|
||||
.replyBox .replyContent p { display:block; }
|
||||
.replyBox .replyContent ul li { padding:0; border:none; line-height:1.25em; list-style:disc;}
|
||||
.replyBox .replyContent ol li { padding:0; border:none; line-height:1.25em; list-style:decimal;}
|
||||
.replyBox .reply { background-color:#F4F4F4; border-bottom:1px dotted #DDDDDD;}
|
||||
.replyBox .replyIndent { background:url(../images/common/iconReplyArrow.gif) no-repeat .0em .3em; padding-left:1.3em;}
|
||||
|
||||
.replyBox .fileAttached { border:1px solid #EFEFEF; background-color:#F4F4F4; padding:5px; margin-top:10px;}
|
||||
.replyBox .fileAttached h5 { font-weight:normal; color:#999999; float:left; font-size:1em; line-height:22px;}
|
||||
.replyBox .fileAttached li { display:inline; white-space:nowrap margin:3px 5px 0 3px; list-style:none; }
|
||||
.replyBox .fileAttached li a { text-decoration:none; font-size:.9em; white-space:nowrap; color:#444444; }
|
||||
.replyBox .fileAttached li a:visited { color:#777777;}
|
||||
|
||||
.commentButton { margin-top:.5em; }
|
||||
|
||||
/* gallery sub menu */
|
||||
.boardSubMenu { margin:0 0 .5em 0; padding:1em 0 .5em .5em; border-bottom:1px solid #e0e1db;}
|
||||
.boardSubMenu a { text-decoration:none; color:#666666; vertical-align:bottom; background:url(../images/common/line_1x10_e0e0e0.gif) no-repeat right 5px; padding-left:10px; padding-right:10px; _padding-top:5px; position:relative; top:5px; }
|
||||
.boardSubMenu img.sort { vertical-align:middle; }
|
||||
|
||||
/* list */
|
||||
.boardList { width:100%; border:1px solid #e0e1db; border-top:none; table-layout:fixed;}
|
||||
.boardListNoTopBorder { border:none; }
|
||||
.boardList th { color:#3e3f3e; font-weight:normal; border-top:1px solid #e0e1db; border-bottom:1px solid #ffffff; padding-top:5px; white-space:nowrap; height:33px; overflow:hidden;}
|
||||
.boardList th.no_line { background-position:-3px bottom; }
|
||||
.boardList th a { color:#3e3f3e; text-decoration:none; }
|
||||
.boardList th.num { border-left:1px solid #ffffff; }
|
||||
.boardList th.checkbox { text-align:center; }
|
||||
.boardList th.title { text-align:center; padding-left:1em; }
|
||||
.boardList th.topic { text-align:left; padding-left:1em; }
|
||||
.boardList th.category { text-align:left; padding-left:1em; }
|
||||
.boardList th.category select { vertical-align:middle; width:200px; height:20px;}
|
||||
.boardList th.reading, th.recommend , th.date { white-space:nowrap;}
|
||||
.boardList th .sort { padding:0 .2em; vertical-align:middle;}
|
||||
|
||||
.boardList tr.notice { background:#f8f8f8; }
|
||||
.boardList tr.notice .num { font-weight:bold;}
|
||||
.boardList tr.bg1 { background:#ffffff}
|
||||
.boardList tr.bg2 { background:#fbfbfb;}
|
||||
.boardList td { border-top:1px solid #eff0ed; padding:.5em;}
|
||||
.boardList td.num { font:.8em tahoma; color:#999999; padding:.5em 1em; text-align:center;}
|
||||
.boardList td.checkbox { font:.8em tahoma; color:#999999; text-align:center;}
|
||||
.boardList tr.notice td.num { padding:.5em; white-space:nowrap;}
|
||||
.boardList tr.notice td.notice { font-size:.9em; color:#999999; font-weight:bold; text-align:center;}
|
||||
.boardList td.thumb img { border:1px solid #E0E1DB; padding:3px; }
|
||||
|
||||
.boardList td.title {padding-left:1em; }
|
||||
.boardList td.title strong.category { font-size:1em; background:url(../images/common/line_1x10_e0e0e0.gif) no-repeat right 3px; padding-right:.5em; margin-right:.5em;}
|
||||
.boardList td.title.bold { font-size:1.2em; font-weight:bold;}
|
||||
.boardList td.title.bold a { position:relative; top:.3em;}
|
||||
.boardList td.title * { vertical-align:middle;}
|
||||
.boardList td.title,
|
||||
.boardList td.title a { color:#444444; text-decoration:none;}
|
||||
.boardList td.title a:visited { color:#777777;}
|
||||
|
||||
.boardList td.topic { padding-left:1em; color:#888888; }
|
||||
.boardList td.topic strong a { font-size:1em; font-weight:normal; text-decoration:none; color:#222222; }
|
||||
.boardList td.topic strong a:visited { color:#777777; }
|
||||
.boardList td.topic .category { background:url(../images/common/line_1x10_e0e0e0.gif) no-repeat left 3px; padding-left:.5em; margin-left:.5em; color:#AAAAAA; }
|
||||
.boardList td.topic div.author { margin-top:.5em; color:#BBBBBB; font-size:0.8em; }
|
||||
.boardList td.topic div.author strong { font-size:1.2em; font-weight:normal; color:#666666; }
|
||||
.boardList td.commentCount { font:bold .8em Tahoma; color:#888888; text-align:center; }
|
||||
|
||||
.boardList td.latestPost { color:#888888; }
|
||||
.boardList td.latestPost div.author { margin-top:.5em; color:#BBBBBB; font-size:0.8em; }
|
||||
.boardList td.latestPost div.author strong { font-size:1.2em; font-weight:normal; color:#666666; }
|
||||
.boardList td.latestPost div.date { font-size:0.8em; margin-top:.5em; }
|
||||
.boardList td.latestPost div.date strong { font-family:Tahoma; font-weight:normal; color:#666666; }
|
||||
|
||||
.boardListNoTopBorder td { border-top:none; border-bottom:1px solid #eff0ed; padding:.5em;}
|
||||
|
||||
.boardList td.webzineTitle { padding-left:1em; color:#777777;}
|
||||
.boardList td.webzineTitle strong.category { font-size:1em; background:url(../images/common/line_1x10_e0e0e0.gif) no-repeat right 3px; padding-right:.5em; margin-right:.5em;}
|
||||
.boardList td.webzineTitle.bold { font-size:1.2em; font-weight:bold;}
|
||||
.boardList td.webzineTitle * { vertical-align:middle;}
|
||||
.boardList td.webzineTitle,
|
||||
.boardList td.webzineTitle a { color:#444444; text-decoration:none;}
|
||||
.boardList td.webzineTitle a:visited { color:#777777;}
|
||||
|
||||
.boardList td.summary { border-top:none; vertical-align:top; color:#666666; line-height:1.25em; padding-left:1em;}
|
||||
.boardList td.summary a { color:#666666; text-decoration:none; line-height:inherit;}
|
||||
.boardList td.summary a:visited { color:#999999;}
|
||||
|
||||
.boardList td .replyAndTrackback img.trackback { margin-bottom:-.1em;}
|
||||
.boardList td .replyAndTrackback strong { font:bold 1em Tahoma;}
|
||||
.boardList td .replyAndTrackback { font:.8em Tahoma; }
|
||||
.boardList td.author { color:#333333; font-size:.95em; padding-left:1em;}
|
||||
.boardList td.author a { font-size:1em; color:#333333;}
|
||||
.boardList td.reading { font:.8em Tahoma; color:#999999; text-align:center;}
|
||||
.boardList td.recommend { font:bold .8em Tahoma; text-align:center;}
|
||||
.boardList td.date { font:.8em Tahoma; color:#999999; text-align:center; white-space:nowrap;}
|
||||
.boardList td input { _margin:-3px;}
|
||||
|
||||
.buttonTypeGo { border:none; cursor:pointer; width:24px; height:20px; _position:relative; _top:3px; font:.75em Tahoma; text-align:center;}
|
||||
*:first-child+html .buttonTypeGo { position:relative; top:3px; }
|
||||
|
||||
.thumbnailBox { margin-top:1em; clear:both; overflow:hidden; border-bottom:1px solid #e0e1db; }
|
||||
.thumbnailBox div.cell { display:block; float:left; overflow:hidden; margin-bottom:1em; margin-right:1em;}
|
||||
.thumbnailBox div.cell img.thumb { padding:2px; border:1px solid #e0e1db; display:block; margin-bottom:1em; margin-left:auto;margin-right:auto;}
|
||||
.thumbnailBox div.title { color:#3B96C0; margin-bottom:.2em; overflow:hidden; white-space:nowrap; text-align:center;}
|
||||
.thumbnailBox div.title a { color:#3B96C0; text-decoration:none;}
|
||||
.thumbnailBox div.nameAndDate { font-size:.9em; color:#999999; margin-bottom:.2em; text-align:center;}
|
||||
.thumbnailBox div.nameAndDate a { color:#999999;}
|
||||
.thumbnailBox div.nameAndDate .author { margin-left:auto; margin-right:right; }
|
||||
.thumbnailBox div.nameAndDate .author div { display:inline; vertical-align:middle;}
|
||||
.thumbnailBox div.nameAndDate .date { font:.8em Tahoma; color:#999999;}
|
||||
.thumbnailBox div.readAndRecommend { font-size:.9em; color:#666666; text-align:center;}
|
||||
.thumbnailBox div.readAndRecommend .num { font:.8em Tahoma;}
|
||||
.thumbnailBox div.readAndRecommend .vr { color:#dddddd;}
|
||||
.thumbnailBox div.readAndRecommend strong.num { font:bold .8em Tahoma; color:#ff6600;}
|
||||
|
||||
/* board Bottom */
|
||||
.boardBottom { margin-top:10px; }
|
||||
|
||||
/* list button */
|
||||
.leftButtonBox { float: left; }
|
||||
.rightButtonBox { float: right; }
|
||||
|
||||
/* pageNavigation */
|
||||
.pageNavigation { text-align:center; font:bold 11px Tahoma; margin-top:5px;}
|
||||
.pageNavigation a { font:bold 1em Tahoma; color:#666666; text-decoration:none; margin:0 10px 0 0; }
|
||||
.pageNavigation .current { font:bold 1em Tahoma; text-decoration:none; margin:0 10px 0 0; }
|
||||
.pageNavigation a:hover { background:#F7F7F7; text-decoration:none; }
|
||||
.pageNavigation a:visited { color:#999999; }
|
||||
.pageNavigation a.goToFirst img, .pageNavigation a.goToLast img { margin-bottom:2px;}
|
||||
|
||||
/* Search Form */
|
||||
.boardSearch { margin-top:30px; margin-left:auto; margin-right:auto; clear:both; text-align:center;}
|
||||
.boardSearch select { height:20px; }
|
||||
.boardSearch input { height:18px; }
|
||||
|
||||
/* boardWrite */
|
||||
.boardEditor { margin-bottom:10px; }
|
||||
.commentEditor { margin-top:10px; }
|
||||
.boardWrite { border:1px solid #e0e1db; padding-bottom:10px;}
|
||||
.boardWrite fieldset { border:none; }
|
||||
.boardWrite .userNameAndPw { margin:10px 10px 0 10px; }
|
||||
.boardWrite .userNameAndPw .userName {width:80px; margin-right:10px; }
|
||||
.boardWrite .userNameAndPw .userPw {width:80px; margin-right:10px; }
|
||||
.boardWrite .userNameAndPw .emailAddress {width:80px; margin-right:10px; }
|
||||
.boardWrite .userNameAndPw .homePage {width:80px; margin-right:10px; }
|
||||
|
||||
.boardWrite .title { margin-top:5px; }
|
||||
.boardWrite .title .category { margin-left:10px; }
|
||||
.boardWrite .title label.title { margin:0 10px 0 10px; }
|
||||
.boardWrite .title input.title { width:60%;}
|
||||
|
||||
.boardWrite dl.option { margin:10px 0 3px 10px; padding:0;}
|
||||
.boardWrite dl.option dd { display:inline; margin-right:5px; }
|
||||
.boardWrite dl.option dd * { vertical-align:middle;}
|
||||
.boardWrite dl.option dd select { width:8em; font-size:.95em; }
|
||||
|
||||
.boardWrite .tag { margin-top:10px; margin-left:10px; }
|
||||
.boardWrite .tag .inputTypeText { width:90%; background:#FFFFFF url(../images/common/iconTag.gif) no-repeat 5px 5px; padding-left:30px;}
|
||||
.boardWrite .tag .help { vertical-align:middle;}
|
||||
.boardWrite .tag .info { font-size:.9em; color:#999999; background:url(../images/common/iconArrowD8.gif) no-repeat left center; margin-top:5px;}
|
||||
|
||||
.boardWrite .extraVarsList { width:100%; border-top:1px solid #e0e1db; border-bottom:none; margin:10px 0 10px 0; table-layout:fixed;}
|
||||
.boardWrite .extraVarsList th { font-weight:normal; color:#555555; text-align:left; padding:4px 0 4px 10px; border-bottom:1px solid #e0e1db; border-right:1px solid #e0e1db;}
|
||||
.boardWrite .extraVarsList td { color:#555555; border-bottom:1px solid #e0e1db; padding:4px 0 4px 10px; }
|
||||
.boardWrite .extraVarsList td a { color:#555555; }
|
||||
|
||||
.smallBox { border:1px solid #e0e1db; margin-left:auto; margin-right:auto; }
|
||||
.smallBox.w268 { width:268px;}
|
||||
.smallBox .header { position:relative; _width:100%; background:#ffffff url(../images/normal/bgH3.gif) no-repeat left bottom; overflow:hidden;}
|
||||
.smallBox .header h3 { clear:both; font-size:1.2em; padding:.8em 2em .6em 1.2em; border-bottom:3px solid #fe3614; }
|
||||
.smallBox .complex { padding:1.5em 2em 2em 2em;}
|
||||
.smallBox .inputPassword { position:relative; border:none; padding:2em 2em 1.5em 2em;}
|
||||
.smallBox .inputPassword .inputTypeText { float:left; margin-right:.5em; width:8em;}
|
||||
.smallBox .inputPassword legend { position:absolute; overflow:hidden; width:1px; height:1px; font-size:.001em; text-indent:-100em;}
|
||||
.smallBox .messageBox { background-color:#F3F3F3; padding:20px; border-bottom:1px solid #EEEEEE;}
|
||||
|
||||
|
||||
/* 게시물의 팝업 메뉴 */
|
||||
.comment_popup_menu, .document_popup_menu { text-align:right; background:url(../images/common/document_menu.gif) no-repeat right top; padding-right:16px; }
|
||||
.comment_popup_menu span, .document_popup_menu span { cursor:pointer; display:inline; background:none; padding:0 0 0 0; margin:0 0 0 0; }
|
||||
|
||||
/* tag list */
|
||||
.tagsBox { border:1px solid #EEEEEE; padding:10px; overflow:hidden;}
|
||||
h5 { padding:2px; }
|
||||
.tags { width:100%; }
|
||||
.tags div { float:left; padding:2px; margin-right:10px; overflow:hidden; white-space:nowrap; height:15px;}
|
||||
.tags div a { text-decoration:none; color:#555555; line-height:150%;}
|
||||
.tags div a:hover { background-color:#888888; color:#FFFFFF;}
|
||||
.tags .tagTypeA a { color:#fe3614; font-weight:bold; font-size:12pt; background-color:#EFEFEF; margin:0;}
|
||||
.tags .tagTypeB a { color:#fe3614; font-size:11pt; margin:0;}
|
||||
.tags .tagTypeC a { font-weight:bold; font-size:11pt; margin:0; background-color:#EFEFEF;}
|
||||
.tags .tagTypeD a { font-weight:bold; margin:0; background-color:#EFEFEF;}
|
||||
.tags .tagTypeE a { font-weight:normal; margin:0;}
|
||||
|
||||
29
modules/board/skins/xe_guestbook/css/cyan.css
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
@charset "utf-8";
|
||||
|
||||
/* board Title */
|
||||
.boardHeader h3 { border-bottom:3px solid #2895c0; }
|
||||
|
||||
/* board Information */
|
||||
.articleNum { float:left; background:url(../images/cyan/iconArticle.gif) no-repeat left top; }
|
||||
.articleNum strong { font:bold 11px Tahoma; color:#2895c0;}
|
||||
|
||||
/* account Navigation */
|
||||
.accountNavigation li.join a { background:url(../images/cyan/iconMyInfo.gif) no-repeat left top; padding-left:14px; }
|
||||
.accountNavigation li.myInfo a { background:url(../images/cyan/iconMyInfo.gif) no-repeat left top; padding-left:14px; }
|
||||
|
||||
/* style.list */
|
||||
.boardList th { background:#ffffff url(../images/cyan/lineBoardListTh.gif) no-repeat left bottom; }
|
||||
.boardList td.recommend { color:#2895c0; }
|
||||
.boardList td .replyAndTrackback { color:#2895c0; }
|
||||
.buttonTypeGo { background:url(../images/cyan/buttonTypeInput24.gif) no-repeat; }
|
||||
|
||||
/* pageNavigation */
|
||||
.pageNavigation .current { color:#2895c0; }
|
||||
|
||||
/* boardRead */
|
||||
boardRead .fileAttached li a { background:url(../images/cyan/iconFile.gif) no-repeat left top;}
|
||||
|
||||
/* replyAndTrackback */
|
||||
.buttonBox .replyAndTrackback a strong { color:#2895c0;}
|
||||
|
||||
.replyBox .fileAttached li { border:0px; display:inline; margin-right:.75em; line-height:1.5em; padding:.1em 0 .1em 1.5em; background:url(../images/cyan/iconFile.gif) no-repeat left;}
|
||||
29
modules/board/skins/xe_guestbook/css/green.css
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
@charset "utf-8";
|
||||
|
||||
/* board Title */
|
||||
.boardHeader h3 { border-bottom:3px solid #38b549; }
|
||||
|
||||
/* board Information */
|
||||
.articleNum { float:left; background:url(../images/green/iconArticle.gif) no-repeat left top; }
|
||||
.articleNum strong { font:bold 11px Tahoma; color:#ff6600;}
|
||||
|
||||
/* account Navigation */
|
||||
.accountNavigation li.join a { background:url(../images/green/iconMyInfo.gif) no-repeat left top; padding-left:14px; }
|
||||
.accountNavigation li.myInfo a { background:url(../images/green/iconMyInfo.gif) no-repeat left top; padding-left:14px; }
|
||||
|
||||
/* style.list */
|
||||
.boardList th { background:#ffffff url(../images/green/lineBoardListTh.gif) no-repeat left bottom; }
|
||||
.boardList td.recommend { color:#38b549; }
|
||||
.boardList td .replyAndTrackback { color:#38b549; }
|
||||
.buttonTypeGo { background:url(../images/green/buttonTypeInput24.gif) no-repeat; }
|
||||
|
||||
/* pageNavigation */
|
||||
.pageNavigation .current { color:#38b549; }
|
||||
|
||||
/* boardRead */
|
||||
.boardRead .fileAttached li a { background:url(../images/green/iconFile.gif) no-repeat left top;}
|
||||
|
||||
/* replyAndTrackback */
|
||||
.buttonBox .replyAndTrackback a strong { color:#38b549;}
|
||||
|
||||
.replyBox .fileAttached li { border:0px; display:inline; margin-right:.75em; line-height:1.5em; padding:.1em 0 .1em 1.5em; background:url(../images/green/iconFile.gif) no-repeat left;}
|
||||
29
modules/board/skins/xe_guestbook/css/purple.css
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
@charset "utf-8";
|
||||
|
||||
/* board Title */
|
||||
.boardHeader h3 { border-bottom:3px solid #ac19a9; }
|
||||
|
||||
/* board Information */
|
||||
.articleNum { float:left; background:url(../images/purple/iconArticle.gif) no-repeat left top; }
|
||||
.articleNum strong { font:bold 11px Tahoma; color:#b1ae00;}
|
||||
|
||||
/* account Navigation */
|
||||
.accountNavigation li.join a { background:url(../images/purple/iconMyInfo.gif) no-repeat left top; padding-left:14px; }
|
||||
.accountNavigation li.myInfo a { background:url(../images/purple/iconMyInfo.gif) no-repeat left top; padding-left:14px; }
|
||||
|
||||
/* style.list */
|
||||
.boardList th { background:#ffffff url(../images/purple/lineBoardListTh.gif) no-repeat left bottom; }
|
||||
.boardList td.recommend { color:#b1ae00; }
|
||||
.boardList td .replyAndTrackback { color:#b1ae00; }
|
||||
.buttonTypeGo { background:url(../images/purple/buttonTypeInput24.gif) no-repeat; }
|
||||
|
||||
/* pageNavigation */
|
||||
.pageNavigation .current { color:#b1ae00; }
|
||||
|
||||
/* boardRead */
|
||||
.boardRead .fileAttached li a { background:url(../images/purple/iconFile.gif) no-repeat left top;}
|
||||
|
||||
/* replyAndTrackback */
|
||||
.buttonBox .replyAndTrackback a strong { color:#b1ae00;}
|
||||
|
||||
.replyBox .fileAttached li { border:0px; display:inline; margin-right:.75em; line-height:1.5em; padding:.1em 0 .1em 1.5em; background:url(../images/purple/iconFile.gif) no-repeat left;}
|
||||
29
modules/board/skins/xe_guestbook/css/red.css
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
@charset "utf-8";
|
||||
|
||||
/* board Title */
|
||||
.boardHeader h3 { border-bottom:3px solid #ed135a; }
|
||||
|
||||
/* board Information */
|
||||
.articleNum { float:left; background:url(../images/red/iconArticle.gif) no-repeat left top; }
|
||||
.articleNum strong { font:bold 11px Tahoma; color:#ff6600;}
|
||||
|
||||
/* account Navigation */
|
||||
.accountNavigation li.join a { background:url(../images/red/iconMyInfo.gif) no-repeat left top; padding-left:14px; }
|
||||
.accountNavigation li.myInfo a { background:url(../images/red/iconMyInfo.gif) no-repeat left top; padding-left:14px; }
|
||||
|
||||
/* style.list */
|
||||
.boardList th { background:#ffffff url(../images/red/lineBoardListTh.gif) no-repeat left bottom; }
|
||||
.boardList td.recommend { color:#ff6600; }
|
||||
.boardList td .replyAndTrackback { color:#ff6600; }
|
||||
.buttonTypeGo { background:url(../images/red/buttonTypeInput24.gif) no-repeat; }
|
||||
|
||||
/* pageNavigation */
|
||||
.pageNavigation .current { color:#ff6600; }
|
||||
|
||||
/* boardRead */
|
||||
.boardRead .fileAttached li a { background:url(../images/red/iconFile.gif) no-repeat left top;}
|
||||
|
||||
/* replyAndTrackback */
|
||||
.buttonBox .replyAndTrackback a strong { color:#ff6600;}
|
||||
|
||||
.replyBox .fileAttached li { border:0px; display:inline; margin-right:.75em; line-height:1.5em; padding:.1em 0 .1em 1.5em; background:url(../images/red/iconFile.gif) no-repeat left;}
|
||||
29
modules/board/skins/xe_guestbook/css/white.css
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
@charset "utf-8";
|
||||
|
||||
/* board Title */
|
||||
.boardHeader h3 { border-bottom:3px solid #fe3614; }
|
||||
|
||||
/* board Information */
|
||||
.articleNum { float:left; background:url(../images/white/iconArticle.gif) no-repeat left top; }
|
||||
.articleNum strong { font:bold 11px Tahoma; color:#ff6600;}
|
||||
|
||||
/* account Navigation */
|
||||
.accountNavigation li.join a { background:url(../images/white/iconMyInfo.gif) no-repeat left top; padding-left:14px; }
|
||||
.accountNavigation li.myInfo a { background:url(../images/white/iconMyInfo.gif) no-repeat left top; padding-left:14px; }
|
||||
|
||||
/* boardRead */
|
||||
.boardRead .fileAttached li a { background:url(../images/white/iconFile.gif) no-repeat left top;}
|
||||
|
||||
/* style.list */
|
||||
.boardList th { background:#ffffff url(../images/white/lineBoardListTh.gif) no-repeat left bottom; }
|
||||
.boardList td.recommend { color:#ff6600; }
|
||||
.boardList td .replyAndTrackback { color:#ff6600; }
|
||||
.buttonTypeGo { background:url(../images/white/buttonTypeInput24.gif) no-repeat; }
|
||||
|
||||
/* pageNavigation */
|
||||
.pageNavigation .current { color:#ff6600; }
|
||||
|
||||
/* replyAndTrackback */
|
||||
.buttonBox .replyAndTrackback a strong { color:#ff6600;}
|
||||
|
||||
.replyBox .fileAttached li { border:0px; display:inline; margin-right:.75em; line-height:1.5em; padding:.1em 0 .1em 1.5em; background:url(../images/white/iconFile.gif) no-repeat left;}
|
||||
24
modules/board/skins/xe_guestbook/delete_comment_form.html
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
<!--%import("filter/delete_comment.xml")-->
|
||||
<!--#include("header.html")-->
|
||||
|
||||
<div class="smallBox w268">
|
||||
|
||||
<div class="header">
|
||||
<h3>{$lang->confirm_delete}</h3>
|
||||
</div>
|
||||
|
||||
<form action="./" method="get" onsubmit="return procFilter(this, delete_comment)">
|
||||
<input type="hidden" name="mid" value="{$mid}" />
|
||||
<input type="hidden" name="page" value="{$page}" />
|
||||
<input type="hidden" name="document_srl" value="{$oComment->get('document_srl')}" />
|
||||
<input type="hidden" name="comment_srl" value="{$oComment->get('comment_srl')}" />
|
||||
|
||||
<div class="inputPassword tCenter">
|
||||
<span class="button"><input type="submit" value="{$lang->cmd_delete}" accesskey="s" /></span>
|
||||
<a href="{getUrl('act','','comment_srl','')}" class="button"><span>{$lang->cmd_cancel}</span></a>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<!--#include("footer.html")-->
|
||||
23
modules/board/skins/xe_guestbook/delete_form.html
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<!--%import("filter/delete_document.xml")-->
|
||||
<!--#include("header.html")-->
|
||||
|
||||
<div class="smallBox w268">
|
||||
|
||||
<div class="header">
|
||||
<h3>{$lang->confirm_delete}</h3>
|
||||
</div>
|
||||
|
||||
<form action="./" method="get" onsubmit="return procFilter(this, delete_document)">
|
||||
<input type="hidden" name="mid" value="{$mid}" />
|
||||
<input type="hidden" name="page" value="{$page}" />
|
||||
<input type="hidden" name="document_srl" value="{$document_srl}" />
|
||||
|
||||
<div class="inputPassword tCenter">
|
||||
<span class="button"><input type="submit" value="{$lang->cmd_delete}" accesskey="s" /></span>
|
||||
<a href="{getUrl('act','')}" class="button"><span>{$lang->cmd_cancel}</span></a>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<!--#include("footer.html")-->
|
||||
25
modules/board/skins/xe_guestbook/delete_trackback_form.html
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
<!--%import("filter/delete_trackback.xml")-->
|
||||
<!--#include("header.html")-->
|
||||
|
||||
<div class="smallBox w268">
|
||||
|
||||
<div class="header">
|
||||
<h3>{$lang->confirm_delete}</h3>
|
||||
</div>
|
||||
|
||||
<form action="./" method="get" onsubmit="return procFilter(this, delete_trackback)">
|
||||
<input type="hidden" name="mid" value="{$mid}" />
|
||||
<input type="hidden" name="page" value="{$page}" />
|
||||
<input type="hidden" name="document_srl" value="{$document_srl}" />
|
||||
<input type="hidden" name="trackback_srl" value="{$trackback_srl}" />
|
||||
|
||||
<div class="inputPassword tCenter">
|
||||
<span class="button"><input type="submit" value="{$lang->cmd_delete}" accesskey="s" /></span>
|
||||
<a href="{getUrl('act','')}" class="button"><span>{$lang->cmd_cancel}</span></a>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
</div>
|
||||
|
||||
|
||||
<!--#include("footer.html")-->
|
||||
65
modules/board/skins/xe_guestbook/extra_var_form.html
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
<!-- 이 파일은 extra_vars의 form을 출력하는 파일이며 다른 스킨에서 그대로 가져가서 css만 바꾸어 주면 된다 -->
|
||||
|
||||
<!-- type=select,checkbox이고 기본값이 , 로 연결되어 있으면 , 를 기준으로 explode하여 배열로 만든다 -->
|
||||
<!--@if(in_array($val->type,array('select','checkbox'))&&strpos($val->default,",")!==false)-->
|
||||
{@ $val->default = explode(',',$val->default) }
|
||||
<!--@end-->
|
||||
|
||||
<!-- 확장변수의 이름을 지정 -->
|
||||
{@ $val->column_name = "extra_vars".$key}
|
||||
|
||||
<!-- 확장변수의 값을 documentItem::getExtraValue로 가져옴 -->
|
||||
{@ $val->value = $oDocument->getExtraValue($key)}
|
||||
|
||||
<!-- 일반 text -->
|
||||
<!--@if($val->type == 'text')-->
|
||||
<input type="text" name="{$val->column_name}" value="{htmlspecialchars($val->value)}" class="inputTypeText w400" />
|
||||
|
||||
<!-- 홈페이지 주소 -->
|
||||
<!--@elseif($val->type == 'homepage')-->
|
||||
<input type="text" name="{$val->column_name}" value="{htmlspecialchars($val->value)}" class="inputTypeText w400" />
|
||||
|
||||
<!-- Email 주소 -->
|
||||
<!--@elseif($val->type == 'email_address')-->
|
||||
<input type="text" name="{$val->column_name}" value="{htmlspecialchars($val->value)}" class="inputTypeText w400" />
|
||||
|
||||
<!-- 전화번호 -->
|
||||
<!--@elseif($val->type == 'tel')-->
|
||||
<input type="text" name="{$val->column_name}" value="{htmlspecialchars($val->value[0])}" size="4" class="inputTypeText" />
|
||||
<input type="text" name="{$val->column_name}" value="{htmlspecialchars($val->value[1])}" size="4" class="inputTypeText" />
|
||||
<input type="text" name="{$val->column_name}" value="{htmlspecialchars($val->value[2])}" size="4" class="inputTypeText" />
|
||||
|
||||
<!-- textarea -->
|
||||
<!--@elseif($val->type == 'textarea')-->
|
||||
<textarea name="{$val->column_name}" class="inputTypeTextArea w400">{htmlspecialchars($val->value)}</textarea>
|
||||
|
||||
<!-- 다중 선택 -->
|
||||
<!--@elseif($val->type == 'checkbox')-->
|
||||
<!--@if($val->default)-->
|
||||
<ul style="list-style:none;">
|
||||
<!--@foreach($val->default as $v)-->
|
||||
<li><input type="checkbox" name="{$val->column_name}" value="{$v}" <!--@if(is_array($val->value)&&in_array($v, $val->value))-->checked="checked"<!--@end-->/> {$v}</li>
|
||||
<!--@end-->
|
||||
</ul>
|
||||
<!--@end-->
|
||||
|
||||
<!-- 단일 선택 -->
|
||||
<!--@elseif($val->type == 'select')-->
|
||||
<select name="{$val->column_name}">
|
||||
<!--@if($val->default)-->
|
||||
<!--@foreach($val->default as $v)-->
|
||||
<option value="{$v}" <!--@if($v == $val->value)-->selected="selected"<!--@end-->>{$v}</option>
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
</select>
|
||||
|
||||
<!-- 날짜 입력 -->
|
||||
<!--@elseif($val->type == 'date')-->
|
||||
<input type="hidden" name="{$val->column_name}" id="date_{$val->column_name}" value="{$val->value}" />
|
||||
<div class="fl inputTypeText w80" id="str_{$val->column_name}">{zdate($val->value,"Y-m-d")}</div>
|
||||
<a href="#" onclick="open_calendar('{$val->column_name}','{$val->value}');return false;" class="button"><span>{$lang->cmd_open_calendar}</span></a>
|
||||
<!--@end-->
|
||||
|
||||
<!--@if($val->desc)-->
|
||||
<p class="info">{$val->desc}</p>
|
||||
<!--@end-->
|
||||
63
modules/board/skins/xe_guestbook/extra_var_value.html
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
<!-- 이 파일은 extra_vars의 결과값을 출력하는 파일이며 다른 스킨에서 그대로 가져가서 css만 바꾸어 주면 된다 -->
|
||||
|
||||
<!-- 확장변수의 이름을 지정 -->
|
||||
{@ $val->column_name = "extra_vars".$key}
|
||||
|
||||
<!-- 확장변수의 값을 documentItem::getExtraValue로 가져옴 -->
|
||||
{@ $val->value = $oDocument->getExtraValue($key)}
|
||||
|
||||
<!-- 일반 text -->
|
||||
<!--@if($val->type == 'text')-->
|
||||
{htmlspecialchars($val->value)}
|
||||
|
||||
<!-- 홈페이지 주소 -->
|
||||
<!--@elseif($val->type == 'homepage')-->
|
||||
<!--@if($val->value)-->
|
||||
<a href="{htmlspecialchars($val->value)}" onclick="window.open(this.href);return false;">{$val->value}</a>
|
||||
<!--@else-->
|
||||
|
||||
<!--@end-->
|
||||
|
||||
<!-- Email 주소 -->
|
||||
<!--@elseif($val->type == 'email_address')-->
|
||||
<!--@if($val->value)-->
|
||||
<a href="mailto:{htmlspecialchars($val->value)}">{$val->value}</a>
|
||||
<!--@else-->
|
||||
|
||||
<!--@end-->
|
||||
|
||||
<!-- 전화번호 -->
|
||||
<!--@elseif($val->type == 'tel')-->
|
||||
{htmlspecialchars($val->value[0])}
|
||||
<!--@if($val->value[1])-->-<!--@end-->
|
||||
{htmlspecialchars($val->value[1])}
|
||||
<!--@if($val->value[2])-->-<!--@end-->
|
||||
{htmlspecialchars($val->value[2])}
|
||||
|
||||
|
||||
<!-- textarea -->
|
||||
<!--@elseif($val->type == 'textarea')-->
|
||||
{nl2br(htmlspecialchars($val->value))}
|
||||
|
||||
|
||||
<!-- 다중 선택 -->
|
||||
<!--@elseif($val->type == 'checkbox')-->
|
||||
<!--@if(!is_array($val->value))-->{@ $val->value = array($val->value) }<!--@end-->
|
||||
<!--@foreach($val->value as $v)-->
|
||||
{@ $_tmp_value[] = htmlspecialchars($v)}
|
||||
<!--@end-->
|
||||
{implode(",",$_tmp_value)}
|
||||
|
||||
|
||||
<!-- 단일 선택 -->
|
||||
<!--@elseif($val->type == 'select')-->
|
||||
{htmlspecialchars($val->value)}
|
||||
|
||||
|
||||
<!-- 날짜 입력 -->
|
||||
<!--@elseif($val->type == 'date')-->
|
||||
{zdate($val->value,"Y-m-d")}
|
||||
|
||||
<!--@end-->
|
||||
|
||||
<!--@if(!$val->value)--> <!--@end-->
|
||||
18
modules/board/skins/xe_guestbook/filter/delete_comment.xml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<filter name="delete_comment" module="board" act="procBoardDeleteComment">
|
||||
<form>
|
||||
<node target="comment_srl" required="true" />
|
||||
</form>
|
||||
<parameter>
|
||||
<param name="mid" target="mid" />
|
||||
<param name="page" target="page" />
|
||||
<param name="document_srl" target="document_srl" />
|
||||
<param name="comment_srl" target="comment_srl" />
|
||||
</parameter>
|
||||
<response callback_func="completeDeleteComment">
|
||||
<tag name="error" />
|
||||
<tag name="message" />
|
||||
<tag name="mid" />
|
||||
<tag name="document_srl" />
|
||||
<tag name="page" />
|
||||
</response>
|
||||
</filter>
|
||||
16
modules/board/skins/xe_guestbook/filter/delete_document.xml
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<filter name="delete_document" module="board" act="procBoardDeleteDocument">
|
||||
<form>
|
||||
<node target="document_srl" required="true" />
|
||||
</form>
|
||||
<parameter>
|
||||
<param name="mid" target="mid" />
|
||||
<param name="page" target="page" />
|
||||
<param name="document_srl" target="document_srl" />
|
||||
</parameter>
|
||||
<response callback_func="completeDeleteDocument">
|
||||
<tag name="error" />
|
||||
<tag name="message" />
|
||||
<tag name="mid" />
|
||||
<tag name="page" />
|
||||
</response>
|
||||
</filter>
|
||||
18
modules/board/skins/xe_guestbook/filter/delete_trackback.xml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<filter name="delete_trackback" module="board" act="procBoardDeleteTrackback">
|
||||
<form>
|
||||
<node target="trackback_srl" required="true" />
|
||||
</form>
|
||||
<parameter>
|
||||
<param name="mid" target="mid" />
|
||||
<param name="page" target="page" />
|
||||
<param name="document_srl" target="document_srl" />
|
||||
<param name="trackback_srl" target="trackback_srl" />
|
||||
</parameter>
|
||||
<response callback_func="completeDeleteTrackback">
|
||||
<tag name="error" />
|
||||
<tag name="message" />
|
||||
<tag name="mid" />
|
||||
<tag name="document_srl" />
|
||||
<tag name="page" />
|
||||
</response>
|
||||
</filter>
|
||||
16
modules/board/skins/xe_guestbook/filter/input_password.xml
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<filter name="input_password" module="board" act="procBoardVerificationPassword" >
|
||||
<form>
|
||||
<node target="document_srl" required="true" />
|
||||
<node target="password" required="true" />
|
||||
</form>
|
||||
<parameter>
|
||||
<param name="mid" target="mid" />
|
||||
<param name="document_srl" target="document_srl" />
|
||||
<param name="comment_srl" target="comment_srl" />
|
||||
<param name="password" target="password" />
|
||||
</parameter>
|
||||
<response>
|
||||
<tag name="error" />
|
||||
<tag name="message" />
|
||||
</response>
|
||||
</filter>
|
||||
16
modules/board/skins/xe_guestbook/filter/insert.xml
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<filter name="insert" module="board" act="procBoardInsertDocument" confirm_msg_code="confirm_submit">
|
||||
<form>
|
||||
<node target="nick_name" required="true" />
|
||||
<node target="password" required="true" />
|
||||
<node target="email_address" maxlength="250" />
|
||||
<node target="homepage" maxlength="250"/>
|
||||
<node target="content" required="true" />
|
||||
</form>
|
||||
<response callback_func="completeDocumentInserted">
|
||||
<tag name="error" />
|
||||
<tag name="message" />
|
||||
<tag name="mid" />
|
||||
<tag name="document_srl" />
|
||||
<tag name="category_srl" />
|
||||
</response>
|
||||
</filter>
|
||||
30
modules/board/skins/xe_guestbook/filter/insert_comment.xml
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
<filter name="insert_comment" module="board" act="procBoardInsertComment" confirm_msg_code="confirm_submit">
|
||||
<form>
|
||||
<node target="document_srl" required="true" />
|
||||
<node target="nick_name" required="true" />
|
||||
<node target="password" required="true" />
|
||||
<node target="email_address" maxlength="250" />
|
||||
<node target="homepage" maxlength="250"/>
|
||||
<node target="content" required="true" minlength="1" />
|
||||
</form>
|
||||
<parameter>
|
||||
<param name="mid" target="mid" />
|
||||
<param name="document_srl" target="document_srl" />
|
||||
<param name="comment_srl" target="comment_srl" />
|
||||
<param name="parent_srl" target="parent_srl" />
|
||||
<param name="nick_name" target="nick_name" />
|
||||
<param name="password" target="password" />
|
||||
<param name="email_address" target="email_address" />
|
||||
<param name="homepage" target="homepage" />
|
||||
<param name="content" target="content" />
|
||||
<param name="is_secret" target="is_secret" />
|
||||
<param name="notify_message" target="notify_message" />
|
||||
</parameter>
|
||||
<response callback_func="completeInsertComment">
|
||||
<tag name="error" />
|
||||
<tag name="message" />
|
||||
<tag name="mid" />
|
||||
<tag name="document_srl" />
|
||||
<tag name="comment_srl" />
|
||||
</response>
|
||||
</filter>
|
||||
15
modules/board/skins/xe_guestbook/filter/search.xml
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<filter name="search" module="board">
|
||||
<form>
|
||||
<node target="search_target" required="true" />
|
||||
<node target="search_keyword" minlegnth="2" maxlength="40" required="true" />
|
||||
</form>
|
||||
<parameter>
|
||||
<param name="mid" target="mid" />
|
||||
<param name="search_target" target="search_target" />
|
||||
<param name="search_keyword" target="search_keyword" />
|
||||
</parameter>
|
||||
<response callback_func="completeSearch">
|
||||
<tag name="error" />
|
||||
<tag name="message" />
|
||||
</response>
|
||||
</filter>
|
||||
13
modules/board/skins/xe_guestbook/filter/vote.xml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<filter name="vote" module="board" act="procBoardVoteDocument" confirm_msg_code="confirm_vote">
|
||||
<form>
|
||||
<node target="document_srl" required="true" />
|
||||
</form>
|
||||
<parameter>
|
||||
<param name="mid" target="mid" />
|
||||
<param name="document_srl" target="document_srl" />
|
||||
</parameter>
|
||||
<response callback_func="completeVote">
|
||||
<tag name="error" />
|
||||
<tag name="message" />
|
||||
</response>
|
||||
</filter>
|
||||
2
modules/board/skins/xe_guestbook/footer.html
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
<!-- 하단 텍스트 출력 -->
|
||||
{$module_info->footer_text}
|
||||
76
modules/board/skins/xe_guestbook/header.html
Normal file
|
|
@ -0,0 +1,76 @@
|
|||
<!-- JS 파일 로드 -->
|
||||
<!--%import("js/board.js")-->
|
||||
|
||||
<!-- 컬러셋 체크 -->
|
||||
<!--@if(!$module_info->colorset)-->
|
||||
{@$module_info->colorset = "white"}
|
||||
<!--@end-->
|
||||
|
||||
<!-- CSS 파일 로드 (컬러셋에 따라서) -->
|
||||
<!--%import("css/common.css")-->
|
||||
|
||||
<!--@if($module_info->colorset == "cyan")--> <!--%import("css/cyan.css")-->
|
||||
<!--@elseif($module_info->colorset == "red")--> <!--%import("css/red.css")-->
|
||||
<!--@elseif($module_info->colorset == "green")--> <!--%import("css/green.css")-->
|
||||
<!--@elseif($module_info->colorset == "purple")--> <!--%import("css/purple.css")-->
|
||||
<!--@else--> <!--%import("css/white.css")-->
|
||||
<!--@end-->
|
||||
|
||||
<!-- 상단 텍스트 출력 -->
|
||||
{$module_info->header_text}
|
||||
|
||||
<!-- 블로그 스킨이 아닐 경우 스킨의 제목/간단한 설명 출력 -->
|
||||
<!--@if($module_info->title)-->
|
||||
<div class="boardHeader">
|
||||
<div class="boardHeaderBorder">
|
||||
<h3>{$module_info->title}<!--@if($module_info->sub_title)--> - {$module_info->sub_title}<!--@end--></h3>
|
||||
</div>
|
||||
</div>
|
||||
<!--@end-->
|
||||
|
||||
<!-- 스킨의 상세 설명 -->
|
||||
<!--@if($module_info->comment)-->
|
||||
<div class="boardDescription">{$module_info->comment}</div>
|
||||
<!--@end-->
|
||||
|
||||
<!-- 게시판 정보 -->
|
||||
<div class="boardInformation">
|
||||
|
||||
<!-- 게시물 수 -->
|
||||
<!--@if($total_count)-->
|
||||
<div class="articleNum">{$lang->document_count} <strong>{number_format($total_count)}</strong></div>
|
||||
<!--@end-->
|
||||
|
||||
<!-- 로그인 정보 -->
|
||||
<ul class="accountNavigation">
|
||||
|
||||
<!-- 로그인 되어 있을 경우 -->
|
||||
<!--@if($is_logged)-->
|
||||
|
||||
<!-- 관리자이면 설정 버튼 출력 -->
|
||||
<!--@if($grant->is_admin)-->
|
||||
<li class="setup"><a href="{getUrl('act','dispBoardAdminBoardInfo')}">{$lang->cmd_setup}</a></li>
|
||||
<!--@end-->
|
||||
|
||||
<!-- 최고관리자이면 관리자 페이지 버튼 출력 -->
|
||||
<!--@if($logged_info->is_admin == 'Y')-->
|
||||
<li class="admin"><a href="{getUrl('','module','admin','act','dispBoardAdminContent')}" onclick="window.open(this.href); return false;">{$lang->cmd_management}</a></li>
|
||||
<!--@end-->
|
||||
|
||||
<!-- 레이아웃이 없으면 회원정보 버튼 출력 -->
|
||||
<!--@if(!$module_info->layout_srl)-->
|
||||
<li class="myInfo"><a href="{getUrl('act','dispMemberInfo')}">{$lang->cmd_view_member_info}</a></li>
|
||||
<li class="loginAndLogout"><a href="{getUrl('act','dispMemberLogout')}">{$lang->cmd_logout}</a></li>
|
||||
<!--@end-->
|
||||
|
||||
<!-- 로그인 되어 있지 않고 레이아웃이 없으면 -->
|
||||
<!--@elseif(!$is_logged && !$module_info->layout_srl)-->
|
||||
<li class="join"><a href="{getUrl('act','dispMemberSignUpForm')}">{$lang->cmd_signup}</a></li>
|
||||
<li class="loginAndLogout"><a href="{getUrl('act','dispMemberLoginForm')}">{$lang->cmd_login}</a></li>
|
||||
<!--@end-->
|
||||
|
||||
<li class="skin_info"><a href="{getUrl('','module','module','act','dispModuleSkinInfo','selected_module',$module_info->module, 'skin', $module_info->skin)}" onclick="popopen(this.href,'skinInfo'); return false;"><img src="./images/common/buttonHelp.gif" alt="Skin Info" width="13" height="13"/></a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
BIN
modules/board/skins/xe_guestbook/images/common/bgH3.gif
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
modules/board/skins/xe_guestbook/images/common/blank.gif
Normal file
|
After Width: | Height: | Size: 43 B |
|
After Width: | Height: | Size: 51 B |
|
After Width: | Height: | Size: 51 B |
|
After Width: | Height: | Size: 44 B |
BIN
modules/board/skins/xe_guestbook/images/common/buttonClose.gif
Normal file
|
After Width: | Height: | Size: 58 B |
BIN
modules/board/skins/xe_guestbook/images/common/buttonDeleteX.gif
Normal file
|
After Width: | Height: | Size: 61 B |
BIN
modules/board/skins/xe_guestbook/images/common/buttonHelp.gif
Normal file
|
After Width: | Height: | Size: 101 B |
|
After Width: | Height: | Size: 70 B |
BIN
modules/board/skins/xe_guestbook/images/common/calendar.gif
Normal file
|
After Width: | Height: | Size: 170 B |
BIN
modules/board/skins/xe_guestbook/images/common/category.gif
Normal file
|
After Width: | Height: | Size: 115 B |
BIN
modules/board/skins/xe_guestbook/images/common/document_menu.gif
Normal file
|
After Width: | Height: | Size: 216 B |
BIN
modules/board/skins/xe_guestbook/images/common/iconAdmin.gif
Normal file
|
After Width: | Height: | Size: 88 B |
BIN
modules/board/skins/xe_guestbook/images/common/iconArrowD8.gif
Normal file
|
After Width: | Height: | Size: 46 B |
BIN
modules/board/skins/xe_guestbook/images/common/iconCheck.gif
Normal file
|
After Width: | Height: | Size: 321 B |
BIN
modules/board/skins/xe_guestbook/images/common/iconNotice.gif
Normal file
|
After Width: | Height: | Size: 452 B |
BIN
modules/board/skins/xe_guestbook/images/common/iconReply.gif
Normal file
|
After Width: | Height: | Size: 106 B |
|
After Width: | Height: | Size: 54 B |
BIN
modules/board/skins/xe_guestbook/images/common/iconRss.gif
Normal file
|
After Width: | Height: | Size: 988 B |
BIN
modules/board/skins/xe_guestbook/images/common/iconSetup.gif
Normal file
|
After Width: | Height: | Size: 155 B |
BIN
modules/board/skins/xe_guestbook/images/common/iconTrackback.gif
Normal file
|
After Width: | Height: | Size: 101 B |
BIN
modules/board/skins/xe_guestbook/images/common/lineH3.gif
Normal file
|
After Width: | Height: | Size: 45 B |
|
After Width: | Height: | Size: 44 B |
BIN
modules/board/skins/xe_guestbook/images/common/notice.gif
Normal file
|
After Width: | Height: | Size: 363 B |
BIN
modules/board/skins/xe_guestbook/images/common/read.gif
Normal file
|
After Width: | Height: | Size: 565 B |
BIN
modules/board/skins/xe_guestbook/images/common/vote.gif
Normal file
|
After Width: | Height: | Size: 562 B |
BIN
modules/board/skins/xe_guestbook/images/cyan/bgBoardListTh.gif
Normal file
|
After Width: | Height: | Size: 204 B |
BIN
modules/board/skins/xe_guestbook/images/cyan/buttonModifyE.gif
Normal file
|
After Width: | Height: | Size: 264 B |
BIN
modules/board/skins/xe_guestbook/images/cyan/buttonReply.gif
Normal file
|
After Width: | Height: | Size: 251 B |
|
After Width: | Height: | Size: 262 B |
BIN
modules/board/skins/xe_guestbook/images/cyan/iconArticle.gif
Normal file
|
After Width: | Height: | Size: 214 B |
BIN
modules/board/skins/xe_guestbook/images/cyan/iconFile.gif
Normal file
|
After Width: | Height: | Size: 145 B |
BIN
modules/board/skins/xe_guestbook/images/cyan/iconList.gif
Normal file
|
After Width: | Height: | Size: 210 B |
BIN
modules/board/skins/xe_guestbook/images/cyan/iconMyInfo.gif
Normal file
|
After Width: | Height: | Size: 91 B |
BIN
modules/board/skins/xe_guestbook/images/cyan/iconWrite.gif
Normal file
|
After Width: | Height: | Size: 198 B |
BIN
modules/board/skins/xe_guestbook/images/cyan/lineBoardListTh.gif
Normal file
|
After Width: | Height: | Size: 3 KiB |
BIN
modules/board/skins/xe_guestbook/images/green/bgBoardListTh.gif
Normal file
|
After Width: | Height: | Size: 197 B |
BIN
modules/board/skins/xe_guestbook/images/green/buttonModifyE.gif
Normal file
|
After Width: | Height: | Size: 264 B |
BIN
modules/board/skins/xe_guestbook/images/green/buttonReply.gif
Normal file
|
After Width: | Height: | Size: 251 B |
|
After Width: | Height: | Size: 262 B |
BIN
modules/board/skins/xe_guestbook/images/green/iconArticle.gif
Normal file
|
After Width: | Height: | Size: 211 B |
BIN
modules/board/skins/xe_guestbook/images/green/iconFile.gif
Normal file
|
After Width: | Height: | Size: 146 B |
BIN
modules/board/skins/xe_guestbook/images/green/iconList.gif
Normal file
|
After Width: | Height: | Size: 565 B |
BIN
modules/board/skins/xe_guestbook/images/green/iconMyInfo.gif
Normal file
|
After Width: | Height: | Size: 96 B |
BIN
modules/board/skins/xe_guestbook/images/green/iconWrite.gif
Normal file
|
After Width: | Height: | Size: 199 B |
|
After Width: | Height: | Size: 2.9 KiB |
BIN
modules/board/skins/xe_guestbook/images/purple/bgBoardListTh.gif
Normal file
|
After Width: | Height: | Size: 197 B |
BIN
modules/board/skins/xe_guestbook/images/purple/buttonModifyE.gif
Normal file
|
After Width: | Height: | Size: 264 B |
BIN
modules/board/skins/xe_guestbook/images/purple/buttonReply.gif
Normal file
|
After Width: | Height: | Size: 400 B |
|
After Width: | Height: | Size: 419 B |
BIN
modules/board/skins/xe_guestbook/images/purple/iconArticle.gif
Normal file
|
After Width: | Height: | Size: 219 B |
BIN
modules/board/skins/xe_guestbook/images/purple/iconFile.gif
Normal file
|
After Width: | Height: | Size: 146 B |
BIN
modules/board/skins/xe_guestbook/images/purple/iconList.gif
Normal file
|
After Width: | Height: | Size: 565 B |
BIN
modules/board/skins/xe_guestbook/images/purple/iconMyInfo.gif
Normal file
|
After Width: | Height: | Size: 125 B |
BIN
modules/board/skins/xe_guestbook/images/purple/iconWrite.gif
Normal file
|
After Width: | Height: | Size: 525 B |
|
After Width: | Height: | Size: 2.4 KiB |
BIN
modules/board/skins/xe_guestbook/images/red/bgBoardListTh.gif
Normal file
|
After Width: | Height: | Size: 197 B |
BIN
modules/board/skins/xe_guestbook/images/red/buttonModifyE.gif
Normal file
|
After Width: | Height: | Size: 264 B |
BIN
modules/board/skins/xe_guestbook/images/red/buttonReply.gif
Normal file
|
After Width: | Height: | Size: 249 B |
|
After Width: | Height: | Size: 265 B |
BIN
modules/board/skins/xe_guestbook/images/red/iconArticle.gif
Normal file
|
After Width: | Height: | Size: 213 B |
BIN
modules/board/skins/xe_guestbook/images/red/iconFile.gif
Normal file
|
After Width: | Height: | Size: 146 B |
BIN
modules/board/skins/xe_guestbook/images/red/iconList.gif
Normal file
|
After Width: | Height: | Size: 565 B |
BIN
modules/board/skins/xe_guestbook/images/red/iconMyInfo.gif
Normal file
|
After Width: | Height: | Size: 96 B |
BIN
modules/board/skins/xe_guestbook/images/red/iconWrite.gif
Normal file
|
After Width: | Height: | Size: 307 B |
BIN
modules/board/skins/xe_guestbook/images/red/lineBoardListTh.gif
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
modules/board/skins/xe_guestbook/images/white/bgBoardListTh.gif
Normal file
|
After Width: | Height: | Size: 197 B |
BIN
modules/board/skins/xe_guestbook/images/white/buttonModifyE.gif
Normal file
|
After Width: | Height: | Size: 407 B |
BIN
modules/board/skins/xe_guestbook/images/white/buttonReply.gif
Normal file
|
After Width: | Height: | Size: 400 B |
|
After Width: | Height: | Size: 419 B |
BIN
modules/board/skins/xe_guestbook/images/white/iconArticle.gif
Normal file
|
After Width: | Height: | Size: 219 B |
BIN
modules/board/skins/xe_guestbook/images/white/iconFile.gif
Normal file
|
After Width: | Height: | Size: 146 B |
BIN
modules/board/skins/xe_guestbook/images/white/iconList.gif
Normal file
|
After Width: | Height: | Size: 101 B |
BIN
modules/board/skins/xe_guestbook/images/white/iconMyInfo.gif
Normal file
|
After Width: | Height: | Size: 125 B |