mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-02 16:52:16 +09:00
삭제
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2327 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
commit
8326004cb2
2773 changed files with 91485 additions and 0 deletions
8
modules/layout/queries/deleteLayout.xml
Normal file
8
modules/layout/queries/deleteLayout.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<query id="deleteLayout" action="delete">
|
||||
<tables>
|
||||
<table name="layouts" />
|
||||
</tables>
|
||||
<conditions>
|
||||
<condition operation="equal" column="layout_srl" var="layout_srl" filter="number" notnull="notnull" />
|
||||
</conditions>
|
||||
</query>
|
||||
11
modules/layout/queries/getLayout.xml
Normal file
11
modules/layout/queries/getLayout.xml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<query id="getLayout" action="select">
|
||||
<tables>
|
||||
<table name="layouts" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="*" />
|
||||
</columns>
|
||||
<conditions>
|
||||
<condition operation="equal" column="layout_srl" var="layout_srl" filter="number" notnull="notnull" />
|
||||
</conditions>
|
||||
</query>
|
||||
11
modules/layout/queries/getLayoutList.xml
Normal file
11
modules/layout/queries/getLayoutList.xml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<query id="getLayoutList" action="select">
|
||||
<tables>
|
||||
<table name="layouts" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="*" />
|
||||
</columns>
|
||||
<navigation>
|
||||
<index var="sort_index" default="layout_srl" order="desc" />
|
||||
</navigation>
|
||||
</query>
|
||||
13
modules/layout/queries/insertLayout.xml
Normal file
13
modules/layout/queries/insertLayout.xml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<query id="insertLayout" action="insert">
|
||||
<tables>
|
||||
<table name="layouts" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="layout_srl" var="layout_srl" filter="number" notnull="notnull" />
|
||||
<column name="layout" var="layout" notnull="notnull" />
|
||||
<column name="title" var="title" notnull="notnull" />
|
||||
<column name="module_srl" var="module_srl" />
|
||||
<column name="layout_path" var="layout_path" />
|
||||
<column name="regdate" var="regdate" default="curdate()" />
|
||||
</columns>
|
||||
</query>
|
||||
13
modules/layout/queries/updateLayout.xml
Normal file
13
modules/layout/queries/updateLayout.xml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<query id="updateLayout" action="update">
|
||||
<tables>
|
||||
<table name="layouts" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="title" var="title" />
|
||||
<column name="extra_vars" var="extra_vars" />
|
||||
<column name="layout_path" var="layout_path" />
|
||||
</columns>
|
||||
<conditions>
|
||||
<condition operation="equal" column="layout_srl" var="layout_srl" filter="number" notnull="notnull" />
|
||||
</conditions>
|
||||
</query>
|
||||
Loading…
Add table
Add a link
Reference in a new issue