mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-23 05:09:56 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@2 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
2569c554ce
commit
c040d4d713
317 changed files with 14496 additions and 0 deletions
8
modules/module_manager/queries/clearDefaultModule.xml
Normal file
8
modules/module_manager/queries/clearDefaultModule.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<query id="clearDefaultModule" action="update">
|
||||
<tables>
|
||||
<table name="modules" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="is_default" var="is_default" default="N" />
|
||||
</columns>
|
||||
</query>
|
||||
8
modules/module_manager/queries/deleteModule.xml
Normal file
8
modules/module_manager/queries/deleteModule.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<query id="deleteModule" action="delete">
|
||||
<tables>
|
||||
<table name="modules" />
|
||||
</tables>
|
||||
<conditions>
|
||||
<condition operation="equal" column="module_srl" var="module_srl" filter="number" notnull="notnull" />
|
||||
</conditions>
|
||||
</query>
|
||||
11
modules/module_manager/queries/getDefaultMidInfo.xml
Normal file
11
modules/module_manager/queries/getDefaultMidInfo.xml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<query id="getDefaultMidInfo" action="select">
|
||||
<tables>
|
||||
<table name="modules" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="*" />
|
||||
</columns>
|
||||
<conditions>
|
||||
<condition operation="equal" column="is_default" default="Y" />
|
||||
</conditions>
|
||||
</query>
|
||||
12
modules/module_manager/queries/getMidInfo.xml
Normal file
12
modules/module_manager/queries/getMidInfo.xml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<query id="getMidInfo" action="select">
|
||||
<tables>
|
||||
<table name="modules" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="*" />
|
||||
</columns>
|
||||
<conditions>
|
||||
<condition operation="equal" column="mid" var="mid" />
|
||||
<condition operation="equal" column="module_srl" var="module_srl" pipe="and" />
|
||||
</conditions>
|
||||
</query>
|
||||
24
modules/module_manager/queries/getModuleInfoByDocument.xml
Normal file
24
modules/module_manager/queries/getModuleInfoByDocument.xml
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
<query id="getModuleInfoByDocument" action="select">
|
||||
<tables>
|
||||
<table name="modules" />
|
||||
<table name="documents" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="modules.module_srl" alias="module_srl" />
|
||||
<column name="modules.mid" alias="mid" />
|
||||
<column name="modules.browser_title" alias="browser_title" />
|
||||
<column name="modules.description" alias="description" />
|
||||
<column name="modules.module" alias="module" />
|
||||
<column name="modules.is_default" alias="is_default" />
|
||||
<column name="modules.menu_srl" alias="menu_srl" />
|
||||
<column name="modules.config" alias="config" />
|
||||
<column name="modules.layout_file" alias="layout_file" />
|
||||
<column name="modules.header_text" alias="header_text" />
|
||||
<column name="modules.footer_text" alias="footer_text" />
|
||||
<column name="modules.regdate" alias="regdate" />
|
||||
</columns>
|
||||
<conditions>
|
||||
<condition operation="equal" column="documents.document_srl" var="document_srl" notnull="notnull" />
|
||||
<condition operation="equal" column="modules.module_srl" var="documents.module_srl" pipe="and" />
|
||||
</conditions>
|
||||
</query>
|
||||
22
modules/module_manager/queries/insertModule.xml
Normal file
22
modules/module_manager/queries/insertModule.xml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
<query id="insertModule" action="insert">
|
||||
<tables>
|
||||
<table name="modules" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="module_srl" default="module_srl" notnull="notnull" />
|
||||
<column name="mid" var="mid" notnull="notnull" minlength="1" maxlength="40" />
|
||||
<column name="skin" var="skin" notnull="notnull" minlength="1" maxlength="250" />
|
||||
<column name="use_category" var="use_category" default="N" />
|
||||
<column name="browser_title" var="browser_title" notnull="notnull" minlength="1" maxlength="250" />
|
||||
<column name="description" var="description" />
|
||||
<column name="module" var="module" notnull="notnull" maxlength="80"/>
|
||||
<column name="is_default" var="is_default" default="N" notnull="notnull" />
|
||||
<column name="menu_srl" var="menu_srl" filter="number" />
|
||||
<column name="extra_vars" var="extra_vars" />
|
||||
<column name="layout_file" var="layout_file" maxlength="250" />
|
||||
<column name="admin_id" var="admin_id" maxlength="80" />
|
||||
<column name="header_text" var="header_text" />
|
||||
<column name="footer_text" var="footer_text" />
|
||||
<column name="regdate" default="curdate()" />
|
||||
</columns>
|
||||
</query>
|
||||
23
modules/module_manager/queries/updateModule.xml
Normal file
23
modules/module_manager/queries/updateModule.xml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<query id="updateModule" action="update">
|
||||
<tables>
|
||||
<table name="modules" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="mid" var="mid" notnull="notnull" minlength="1" maxlength="40"/>
|
||||
<column name="skin" var="skin" notnull="notnull" minlength="1" maxlength="250" />
|
||||
<column name="use_category" var="use_category" default="N" />
|
||||
<column name="browser_title" var="browser_title" notnull="notnull" minlength="1" maxlength="250" />
|
||||
<column name="description" var="description" />
|
||||
<column name="module" var="module" notnull="notnull" maxlength="80"/>
|
||||
<column name="is_default" var="is_default" default="N" notnull="notnull" />
|
||||
<column name="menu_srl" var="menu_srl" filter="number" />
|
||||
<column name="extra_vars" var="extra_vars" />
|
||||
<column name="layout_file" var="layout_file" maxlength="250" />
|
||||
<column name="admin_id" var="admin_id" maxlength="80" />
|
||||
<column name="header_text" var="header_text" />
|
||||
<column name="footer_text" var="footer_text" />
|
||||
</columns>
|
||||
<conditions>
|
||||
<condition operation="equal" column="module_srl" var="module_srl" filter="number" notnull="notnull"/>
|
||||
</conditions>
|
||||
</query>
|
||||
11
modules/module_manager/queries/updateModuleExtraVars.xml
Normal file
11
modules/module_manager/queries/updateModuleExtraVars.xml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<query id="updateModuleExtraVars" action="update">
|
||||
<tables>
|
||||
<table name="modules" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="extra_vars" var="extra_vars" />
|
||||
</columns>
|
||||
<conditions>
|
||||
<condition operation="equal" column="module_srl" var="module_srl" filter="number" notnull="notnull"/>
|
||||
</conditions>
|
||||
</query>
|
||||
11
modules/module_manager/queries/updateModuleGrant.xml
Normal file
11
modules/module_manager/queries/updateModuleGrant.xml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<query id="updateModuleGrant" action="update">
|
||||
<tables>
|
||||
<table name="modules" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="grant" var="grant" />
|
||||
</columns>
|
||||
<conditions>
|
||||
<condition operation="equal" column="module_srl" var="module_srl" filter="number" notnull="notnull"/>
|
||||
</conditions>
|
||||
</query>
|
||||
Loading…
Add table
Add a link
Reference in a new issue