mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-29 16:19:58 +09:00
통합검색 모듈인 integration_search 추가
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1992 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
87e2fab04c
commit
c4d1ed1c2e
26 changed files with 698 additions and 6 deletions
63
modules/integration_search/skins/default/index.html
Normal file
63
modules/integration_search/skins/default/index.html
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
<!-- 컬러셋 체크 -->
|
||||
<!--@if($module_info->colorset != "white")-->
|
||||
{@$module_info->colorset = "white"}
|
||||
<!--@end-->
|
||||
|
||||
<!-- CSS 파일 로드 (컬러셋에 따라서) -->
|
||||
<!--@if($module_info->colorset == "white")-->
|
||||
<!--%import("css/white.css")-->
|
||||
<!--@end-->
|
||||
|
||||
<div class="boardInformation">
|
||||
<div class="fl">
|
||||
<span class="search">{$lang->search_keyword} : <strong>{$is_keyword}</strong></span>
|
||||
</div>
|
||||
<div class="fr">
|
||||
<span class="articleNum">{$lang->document_count} : <strong>{number_format($total_count)}</strong></span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--@if(!$document_list)-->
|
||||
<!-- 게시물이 없으면 등록된 글이 없음을 표시 -->
|
||||
<div class="no_result">
|
||||
{$lang->no_documents}
|
||||
</div>
|
||||
<!--@else-->
|
||||
<!--@foreach($document_list as $no => $document)-->
|
||||
<ul class="search_result">
|
||||
<li class="title">
|
||||
<a href="{getUrl('','document_srl',$document->document_srl)}" onclick="window.open(this.href);return false;">{$document->getTitleText()}</a>
|
||||
<!--@if($document->getCommentCount())-->
|
||||
<span class="replyAndTrackback" title="Replies"><img src="./images/{$module_info->colorset}/iconReply.gif" alt="" width="12" height="12" class="icon" /> <strong>{$document->getCommentCount()}</strong></span>
|
||||
<!--@end-->
|
||||
<!--@if($document->getTrackbackCount())-->
|
||||
<span class="replyAndTrackback" title="Trackbacks"><img src="./images/{$module_info->colorset}/iconTrackback.gif" alt="" width="12" height="13" class="trackback icon" /> <strong>{$document->getTrackbackCount()}</strong></span>
|
||||
<!--@end-->
|
||||
</li>
|
||||
|
||||
<!--@if($document->thumbnailExists(100))-->
|
||||
<li class="thumbnail"><a href="{getUrl('','document_srl',$document->document_srl)}" onclick="window.open(this.href);return false;"><img src="{$document->getThumbnail(100)}" border="0" alt="" /></a></li>
|
||||
<!--@end-->
|
||||
|
||||
<li class="summary"><a href="{getUrl('','document_srl',$document->document_srl)}" onclick="window.open(this.href);return false;">{$document->getSummary(140)}</a></li>
|
||||
<li class="author"><div class="member_{$document->get('member_srl')}">{$document->getNickName()}</div></li>
|
||||
<li class="date">{$document->getRegdate('Y-m-d H:i')}</li>
|
||||
</ul>
|
||||
<div class="clear"></div>
|
||||
<!--@end-->
|
||||
|
||||
|
||||
<!-- 페이지 네비게이션 -->
|
||||
<div class="pageNavigation">
|
||||
|
||||
<a href="{getUrl('page','','document_srl','')}" class="goToFirst"><img src="./images/{$module_info->colorset}/bottomGotoFirst.gif" alt="{$lang->first_page}" width="7" height="5" /></a>
|
||||
<!--@while($page_no = $page_navigation->getNextPage())-->
|
||||
<!--@if($page == $page_no)-->
|
||||
<span class="current">{$page_no}</span>
|
||||
<!--@else-->
|
||||
<a href="{getUrl('page',$page_no,'document_srl','')}">{$page_no}</a>
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
<a href="{getUrl('page',$page_navigation->last_page,'document_srl','')}" class="goToLast"><img src="./images/{$module_info->colorset}/bottomGotoLast.gif" alt="{$lang->last_page}" width="7" height="5" /></a>
|
||||
</div>
|
||||
<!--@end-->
|
||||
Loading…
Add table
Add a link
Reference in a new issue