XE Tips 는 제가 XE 공홈에 쓴 XE 관련 유용한 팁들입니다. 기능개선은 공홈에 안 적어둔 XE 유용 개선팁들입니다.
유용정보는 외부 검색을 통해 알아낸 소스등을 기재해둔 곳입니다.
버그 신고내역들은 XE 사용하다가 발견한 버그 패치방법들로, Core Issue 에 기록해뒀기에 XE 에 적용이 되었을 가능성이 있겠죠
제가 쓴 글들에 대해 퍼가실때는 꼭 출처를남겨주시고.. (다만 플래시뷰 기반이기에 퍼가기는조금 힘들 수 있겠죠 ^^;)
타회원의 글들도 적혀있는 출처를 같이 꼭 기재해주세요
출처 | sejin7940 |
---|
관리자페이지->콘텐츠->파일 의 파일목록에서 크기나 다운로드 기준의 정렬을 하고 싶은 경우
1. modules/file/file.admin.view.php 에서
function dispFileAdminList() 함수에서
$args->sort_index = 'file_srl';
부분을
if(Context::get('sort_index')) $args->sort_index=Context::get('sort_index');
else $args->sort_index = 'file_srl'; // /< Sorting values
로 변경
2. modules/file/tpl/file_list.html 에서
<th scope="col">{$lang->file}</th>
<th scope="col" class="nowr">{$lang->file_size}</th>
<th scope="col" class="nowr">{$lang->cmd_download}</th>
부분을 아래처럼 변경
<th scope="col"><a href="{getUrl('sort_index','file_srl')}">{$lang->file}</a></th>
<th scope="col" class="nowr"><a href="{getUrl('sort_index','file_size')}">{$lang->file_size}</a></th>
<th scope="col" class="nowr"><a href="{getUrl('sort_index','download_count')}">{$lang->cmd_download}</a></th>