This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/modules/email_queue/email_queue_construct.xml
2011-05-03 09:49:01 +10:00

127 lines
3.1 KiB
XML

<?xml version="1.0" encoding="ISO-8859-1" ?>
<construct>
<!-- Module name -->
<module>email_queue</module>
<!-- Module supporting database table -->
<table>email_queue</table>
<!-- Module dependancy(s) (module wont install if these modules are not yet installed) -->
<dependancy></dependancy>
<!-- DB cache in seconds -->
<cache>0</cache>
<!-- Default order_by field for SQL queries -->
<order_by>id</order_by>
<!-- Default SQL limit for SQL queries -->
<limit>25</limit>
<!-- Schema version (used to determine if the schema has change during upgrades) -->
<version>0</version>
<!-- Database indexes -->
<index>
</index>
<!-- Database fields -->
<field>
<!-- Record ID -->
<id>
<index>1</index>
<type>I8</type>
<unique>1</unique>
</id>
<!-- Site ID -->
<site_id>
<index>1</index>
<type>I4</type>
</site_id>
<!-- Date record created -->
<date_orig>
<convert>date-now</convert>
<display>Date Created</display>
<type>I8</type>
</date_orig>
<!-- Date record updated -->
<date_last>
<convert>date-now</convert>
<display>Date Updated</display>
<type>I8</type>
</date_last>
<!-- Record active (BOOL)-->
<status>
<display>Processed</display>
<type>L</type>
</status>
<account_id>
<display>Account</display>
<type>C(128)</type>
</account_id>
<email_template>
<display>Email Template</display>
<type>C(128)</type>
</email_template>
<sql1>
<display>Data Field 1</display>
<type>C(128)</type>
</sql1>
<sql2>
<display>Data Field 2</display>
<type>C(128)</type>
</sql2>
<sql3>
<display>Data Field 3</display>
<type>C(128)</type>
</sql3>
<sql4>
<display>Data Field 4</display>
<type>C(128)</type>
</sql4>
<sql5>
<display>Data Field 5</display>
<type>C(128)</type>
</sql5>
<var>
<display>Data Variables</display>
<type>X2</type>
</var>
</field>
<!-- Methods for this class, and the fields they have access to, if applicable -->
<method>
<add>id,site_id,date_orig,date_last,status,account_id,email_template,sql1,sql2,sql3,sql4,sql5,var</add>
<delete>id,site_id,date_orig,date_last,status,account_id,email_template,sql1,sql2,sql3,sql4,sql5,var</delete>
<search>id,site_id,date_orig,date_last,status,account_id,email_template,sql1,sql2,sql3,sql4,sql5,var</search>
<update>id,site_id,date_orig,date_last,status,account_id,email_template,sql1,sql2,sql3,sql4,sql5,var</update>
<view>id,site_id,date_orig,date_last,status,account_id,email_template,sql1,sql2,sql3,sql4,sql5,var</view>
</method>
<!-- Method triggers -->
<trigger></trigger>
<!-- Template page display titles -->
<title>
</title>
<!-- Template helpers -->
<tpl>
<search_show>
<checkbox>
<field>id</field>
<type>checkbox</type>
<width>25px</width>
</checkbox>
<date_orig>
<field>date_orig</field>
<type>date</type>
</date_orig>
<account_id>
<field>account_id</field>
</account_id>
<email_template>
<field>email_template</field>
</email_template>
<status>
<field>status</field>
<type>bool</type>
</status>
</search_show>
</tpl>
</construct>