mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-23 21:29:58 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@411 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
d915912c41
commit
13c860a959
40 changed files with 1695 additions and 9 deletions
8
modules/plugin/queries/deleteLayout.xml
Normal file
8
modules/plugin/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>
|
||||
8
modules/plugin/queries/deleteLayoutMenu.xml
Normal file
8
modules/plugin/queries/deleteLayoutMenu.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<query id="deleteLayoutMenu" action="delete">
|
||||
<tables>
|
||||
<table name="layout_menu" />
|
||||
</tables>
|
||||
<conditions>
|
||||
<condition operation="equal" column="menu_srl" var="menu_srl" filter="number" notnull="notnull" />
|
||||
</conditions>
|
||||
</query>
|
||||
8
modules/plugin/queries/deleteLayoutMenus.xml
Normal file
8
modules/plugin/queries/deleteLayoutMenus.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<query id="deleteLayoutMenus" action="delete">
|
||||
<tables>
|
||||
<table name="layout_menu" />
|
||||
</tables>
|
||||
<conditions>
|
||||
<condition operation="equal" column="layout_srl" var="layout_srl" filter="number" notnull="notnull" />
|
||||
</conditions>
|
||||
</query>
|
||||
11
modules/plugin/queries/getChildMenuCount.xml
Normal file
11
modules/plugin/queries/getChildMenuCount.xml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<query id="getChildMenuCount" action="select">
|
||||
<tables>
|
||||
<table name="layout_menu" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="count(*)" alias="count" />
|
||||
</columns>
|
||||
<conditions>
|
||||
<condition operation="equal" column="parent_srl" var="menu_srl" filter="number" notnull="notnull" />
|
||||
</conditions>
|
||||
</query>
|
||||
11
modules/plugin/queries/getLayout.xml
Normal file
11
modules/plugin/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/plugin/queries/getLayoutList.xml
Normal file
11
modules/plugin/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>
|
||||
14
modules/plugin/queries/getLayoutMenu.xml
Normal file
14
modules/plugin/queries/getLayoutMenu.xml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<query id="getLayoutMenu" action="select">
|
||||
<tables>
|
||||
<table name="layout_menu" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="*" />
|
||||
</columns>
|
||||
<conditions>
|
||||
<condition operation="equal" column="menu_srl" var="menu_srl" filter="number" notnull="notnull" />
|
||||
</conditions>
|
||||
<navigation>
|
||||
<index var="sort_index" default="listorder" order="asc" />
|
||||
</navigation>
|
||||
</query>
|
||||
15
modules/plugin/queries/getLayoutMenuList.xml
Normal file
15
modules/plugin/queries/getLayoutMenuList.xml
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<query id="getLayoutMenuList" action="select">
|
||||
<tables>
|
||||
<table name="layout_menu" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="*" />
|
||||
</columns>
|
||||
<conditions>
|
||||
<condition operation="equal" column="layout_srl" var="layout_srl" filter="number" notnull="notnull" />
|
||||
<condition operation="equal" column="menu_id" var="menu_id" filter="number" notnull="notnull" pipe="and" />
|
||||
</conditions>
|
||||
<navigation>
|
||||
<index var="sort_index" default="listorder" order="desc" />
|
||||
</navigation>
|
||||
</query>
|
||||
11
modules/plugin/queries/insertLayout.xml
Normal file
11
modules/plugin/queries/insertLayout.xml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<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="regdate" var="regdate" default="curdate()" />
|
||||
</columns>
|
||||
</query>
|
||||
21
modules/plugin/queries/insertLayoutMenu.xml
Normal file
21
modules/plugin/queries/insertLayoutMenu.xml
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
<query id="insertLayoutMenu" action="insert">
|
||||
<tables>
|
||||
<table name="layout_menu" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="menu_srl" var="menu_srl" filter="number" notnull="notnull" />
|
||||
<column name="parent_srl" var="parent_srl" filter="number" default="0" />
|
||||
<column name="layout_srl" var="layout_srl" filter="number" notnull="notnull" />
|
||||
<column name="menu_id" var="menu_id" filter="number" notnull="notnull" />
|
||||
<column name="name" var="name" notnull="notnull" />
|
||||
<column name="url" var="url" />
|
||||
<column name="open_window" var="open_window" />
|
||||
<column name="expand" var="expand" />
|
||||
<column name="normal_btn" var="normal_btn" />
|
||||
<column name="hover_btn" var="hover_btn" />
|
||||
<column name="active_btn" var="active_btn" />
|
||||
<column name="group_srls" var="group_srls" />
|
||||
<column name="listorder" var="listorder" notnull="notnull" />
|
||||
<column name="regdate" var="regdate" default="curdate()" />
|
||||
</columns>
|
||||
</query>
|
||||
12
modules/plugin/queries/updateLayout.xml
Normal file
12
modules/plugin/queries/updateLayout.xml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<query id="updateLayout" action="update">
|
||||
<tables>
|
||||
<table name="layouts" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="title" var="title" notnull="notnull" />
|
||||
<column name="extra_vars" var="extra_vars" />
|
||||
</columns>
|
||||
<conditions>
|
||||
<condition operation="equal" column="layout_srl" var="layout_srl" filter="number" notnull="notnull" />
|
||||
</conditions>
|
||||
</query>
|
||||
18
modules/plugin/queries/updateLayoutMenu.xml
Normal file
18
modules/plugin/queries/updateLayoutMenu.xml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<query id="updateLayoutMenu" action="update">
|
||||
<tables>
|
||||
<table name="layout_menu" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="name" var="name" notnull="notnull" />
|
||||
<column name="url" var="url" />
|
||||
<column name="open_window" var="open_window" />
|
||||
<column name="expand" var="expand" />
|
||||
<column name="normal_btn" var="normal_btn" />
|
||||
<column name="hover_btn" var="hover_btn" />
|
||||
<column name="active_btn" var="active_btn" />
|
||||
<column name="group_srls" var="group_srls" />
|
||||
</columns>
|
||||
<conditions>
|
||||
<condition operation="equal" column="menu_srl" var="menu_srl" filter="number" notnull="notnull" />
|
||||
</conditions>
|
||||
</query>
|
||||
12
modules/plugin/queries/updateLayoutMenuParent.xml
Normal file
12
modules/plugin/queries/updateLayoutMenuParent.xml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<query id="updateLayoutMenuParent" action="update">
|
||||
<tables>
|
||||
<table name="layout_menu" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="parent_srl" var="parent_srl" />
|
||||
<column name="listorder" var="listorder" notnull="notnull" />
|
||||
</columns>
|
||||
<conditions>
|
||||
<condition operation="equal" column="menu_srl" var="menu_srl" filter="number" notnull="notnull" />
|
||||
</conditions>
|
||||
</query>
|
||||
Loading…
Add table
Add a link
Reference in a new issue