포럼
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
관리자 페이지 문서 조회순으로?
2012.06.06 15:16
관리자 페이지 문서들을 조회순, 추천순, 날자순, 댓글 순 등으로는 정렬못하는건가요?
검색기능으로 어느정도는 가능하겠으나, 조회수가 많은순부터 적은순까지 한번에 볼 수 없을까 합니다.
그런 기능도 있었음 좋을듯 하네요.
xe - modules - document - tpl - document_list.html 열고
line 41 쯤에
<th scope="col" class="nowr">{$lang->readed_count}</th>
이것을
<th scope="col" class="nowr"><a href="{getUrl('', 'module', 'admin', 'act', 'dispDocumentAdminList','sort_index', 'readed_count', 'sort_order', 'desc')}">{$lang->readed_count}</a></th>
이것으로 변경
xe - modules - document - document.admin.view.php 열고
line 38 쯤에
$args->sort_index = 'list_order';
이것을
if(Context::get('sort_index')) $args->sort_index = Context::get('sort_index');
else $args->sort_index = 'list_order';
if(Context::get('sort_order')) $args->order_type = Context::get('sort_order');
이것으로 변경
조회순만 예를 든 겁니다....
다른 항목들도 같은 방식으로 추가로 수정해 주면 됩니다.