mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-24 21:03:19 +09:00
17438345
* 관리 메인페이지에 게시물/댓글 신고 회수 출력 * 상태 각 항목에 해당 페이지 링크 추가 * 어제/오늘 숫자를 잘못 가져오는 문제 수정 git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4859 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
7a26a73088
commit
5a187f2bd0
6 changed files with 172 additions and 36 deletions
19
modules/admin/queries/getCommentDeclaredStatus.xml
Normal file
19
modules/admin/queries/getCommentDeclaredStatus.xml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<query id="getCommentDeclaredStatus" action="select">
|
||||
<tables>
|
||||
<table name="comment_declared_log" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="substr(regdate,1,8)" alias="date" />
|
||||
<column name="count(*)" alias="count" />
|
||||
</columns>
|
||||
<conditions>
|
||||
<condition operation="more" column="regdate" var="date" notnull="notnull"/>
|
||||
</conditions>
|
||||
<navigation>
|
||||
<index var="sort_index" default="substr(regdate,1,8)" order="asc" />
|
||||
<list_count var="list_count" default="2" />
|
||||
</navigation>
|
||||
<groups>
|
||||
<group column="substr(regdate,0,8)" />
|
||||
</groups>
|
||||
</query>
|
||||
Loading…
Add table
Add a link
Reference in a new issue