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

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

@ -84,6 +84,26 @@
<label for="fld_for_category">{$lang->about_use_category}</label>
</td>
</tr>
<tr>
<th scope="row">{$lang->order_target}</th>
<td>
<select name="order_target">
<!--@foreach($order_target as $key => $val)-->
<option value="{$key}" <!--@if($module_info->order_target == $key)-->selected="selected"<!--@end-->>{$val}</option>
<!--@end-->
</select>
</td>
</tr>
<tr>
<th scope="row">{$lang->order_type}</th>
<td>
<select name="order_type">
<option value="asc" <!--@if($module_info->order_type != 'desc')-->selected="selected"<!--@end-->>{$lang->order_asc}</option>
<option value="desc" <!--@if($module_info->order_type == 'desc')-->selected="selected"<!--@end-->>{$lang->order_desc}</option>
</select>
</td>
</tr>
<tr>
<th scope="row">{$lang->list_count}</th>
<td>