게시판 모듈에서 기존의 스킨에서 임시 처리하던 정렬 옵션을 게시판 모듈 자체 설정으로 변경. 기본/수정/등록일/추천/조회/댓글수/제목순 정렬 기능 추가

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4070 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-04-04 03:58:01 +00:00
parent 29f9b4ce49
commit 95a74eaade
15 changed files with 321 additions and 272 deletions

View file

@ -42,6 +42,12 @@
// 템플릿 경로 지정 (board의 경우 tpl에 관리자용 템플릿 모아놓음)
$template_path = sprintf("%stpl/",$this->module_path);
$this->setTemplatePath($template_path);
// 정렬 옵션을 세팅
foreach($this->order_target as $key) $order_target[$key] = Context::getLang($key);
$order_target['list_order'] = Context::getLang('document_srl');
$order_target['update_order'] = Context::getLang('last_update');
Context::set('order_target', $order_target);
}
/**