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

This commit is contained in:
zero 2007-02-27 13:24:22 +00:00
parent 8c987b2b79
commit 49209e6785
9 changed files with 23 additions and 51 deletions

View file

@ -1,11 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<module version="0.1">
<title xml:lang="ko">꼬리표</title>
<title xml:lang="en">tag</title>
<title xml:lang="ko">한국 우편번호 검색</title>
<title xml:lang="en">Korea Zipcode Finder</title>
<author email_address="zero@zeroboard.com" link="http://www.zeroboard.com" date="2007. 2. 28">
<name xml:lang="ko">제로</name>
<name xml:lang="en">zero</name>
<description xml:lang="ko">꼬리표 관리 모듈</description>
<description xml:lang="en">tag</description>
<description xml:lang="ko">한국 우편번호 검색을 담당합니다.</description>
<description xml:lang="en">Korea Zipcode Finder</description>
</author>
<module>

View file

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<module>
<grants />
<actions>
<action name="procSearchZipCode" type="model" index="true" standalone="true" />
</actions>
</module>

View file

@ -0,0 +1,11 @@
<?php
/**
* @class kr_zip
* @author zero (zero@nzeo.com)
* @brief 우편번호 검색 모듈인 kr_zip의 상위 클래스
**/
class kr_zip extends ModuleObject {
}
?>

View file

@ -1,6 +1,6 @@
<?php
/**
* @class tagController
* @class kr_zip
* @author zero (zero@nzeo.com)
* @brief tag 모듈의 controller class
**/

View file

@ -1,8 +0,0 @@
<query id="deleteModuleTags" action="delete">
<tables>
<table name="tags" />
</tables>
<conditions>
<condition operation="equal" column="module_srl" var="module_srl" filter="number" notnull="notnull" />
</conditions>
</query>

View file

@ -1,8 +0,0 @@
<query id="deleteTag" action="delete">
<tables>
<table name="tags" />
</tables>
<conditions>
<condition operation="equal" column="document_srl" var="document_srl" filter="number" notnull="notnull" />
</conditions>
</query>

View file

@ -1,12 +0,0 @@
<query id="insertTag" action="insert">
<tables>
<table name="tags" />
</tables>
<columns>
<column name="tag_srl" var="tag_srl" notnull="notnull" default="sequence()" />
<column name="module_srl" var="module_srl" filter="number" notnull="notnull" />
<column name="document_srl" var="document_srl" filter="number" notnull="notnull" />
<column name="tag" var="tag" notnull="notnull" minlength="1" maxlength="240" />
<column name="regdate" var="regdate" default="curdate()" />
</columns>
</query>

View file

@ -1,7 +0,0 @@
<table name="tags">
<column name="tag_srl" type="number" size="11" notnull="notnull" primary_key="primary_key" />
<column name="module_srl" type="number" size="11" default="0" notnull="notnull" index="idx_module_srl" />
<column name="document_srl" type="number" size="11" default="0" notnull="notnull" index="idx_document_srl" />
<column name="tag" type="varchar" size="240" notnull="notnull" />
<column name="regdate" type="date" index="idx_regdate" />
</table>

View file

@ -1,11 +0,0 @@
<?php
/**
* @class tag
* @author zero (zero@nzeo.com)
* @brief tag 모듈의 high class
**/
class tag extends ModuleObject {
}
?>