git-svn-id: http://xe-core.googlecode.com/svn/trunk@1173 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-04-16 11:37:12 +00:00
parent d08a5b7787
commit 1869df4ddc
17 changed files with 313 additions and 378 deletions

View file

@ -1,6 +1,6 @@
<query id="getMenuItems" action="select">
<tables>
<table name="menu_menu" />
<table name="menu_item" />
</tables>
<columns>
<column name="*" />
@ -9,6 +9,6 @@
<condition operation="equal" column="menu_srl" var="menu_srl" filter="number" notnull="notnull" />
</conditions>
<navigation>
<index var="sort_index" default="listorder" order="asc" />
<index var="sort_index" default="listorder" order="desc" />
</navigation>
</query>

View file

@ -7,5 +7,8 @@
</columns>
<navigation>
<index var="sort_index" default="listorder" order="asc" />
<list_count var="list_count" default="20" />
<page_count var="page_count" default="10" />
<page var="page" default="1" />
</navigation>
</query>

View file

@ -4,7 +4,7 @@
</tables>
<columns>
<column name="menu_srl" var="menu_srl" filter="number" notnull="notnull" />
<column name="title" var="name" notnull="notnull" />
<column name="title" var="title" notnull="notnull" />
<column name="listorder" var="listorder" notnull="notnull" />
<column name="regdate" var="regdate" default="curdate()" />
</columns>

View file

@ -3,8 +3,9 @@
<table name="menu_item" />
</tables>
<columns>
<column name="menu_srl" var="menu_srl" filter="number" notnull="notnull" />
<column name="menu_item_srl" var="menu_item_srl" filter="number" notnull="notnull" />
<column name="parent_srl" var="parent_srl" filter="number" default="0" />
<column name="menu_srl" var="menu_srl" filter="number" notnull="notnull" />
<column name="name" var="name" notnull="notnull" />
<column name="url" var="url" />
<column name="open_window" var="open_window" />