mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
- 2021년에 next 브랜치 적용을 목표로 작업했던 것 가져옴 - modules 테이블에 domain_srl을 추가하여 특정 도메인에서만 유효하도록 설정 가능 - site_srl 변수를 사용하던 곳 중 삭제할 수 있는 곳은 모두 삭제함
26 lines
1.1 KiB
XML
26 lines
1.1 KiB
XML
<query id="getDefaultModules" action="select">
|
|
<tables>
|
|
<table name="modules" alias="modules" />
|
|
<table name="module_categories" alias="module_categories" type="left join">
|
|
<conditions>
|
|
<condition operation="equal" column="module_categories.module_category_srl" default="modules.module_category_srl" />
|
|
</conditions>
|
|
</table>
|
|
</tables>
|
|
<columns>
|
|
<column name="modules.domain_srl" />
|
|
<column name="modules.module" />
|
|
<column name="modules.mid" />
|
|
<column name="modules.browser_title" />
|
|
<column name="module_categories.title" alias="category" />
|
|
<column name="modules.module_srl" />
|
|
</columns>
|
|
<conditions>
|
|
<condition operation="equal" column="modules.domain_srl" var="domain_srl" />
|
|
</conditions>
|
|
<navigation>
|
|
<index var="sort_index" default="modules.module" order="asc" />
|
|
<index var="sort_index" default="module_categories.title" order="asc" />
|
|
<index var="sort_index" default="modules.mid" order="asc" />
|
|
</navigation>
|
|
</query>
|