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/account_memo/account_memo_construct.xml
2011-05-03 09:49:04 +10:00

101 lines
2.2 KiB
XML

<?xml version="1.0" encoding="ISO-8859-1" ?>
<construct>
<!-- define the module name -->
<module>account_memo</module>
<!-- define the module table name -->
<table>account_memo</table>
<!-- define the module dependancy(s) -->
<dependancy>account</dependancy>
<!-- define the DB cache in seconds -->
<cache>0</cache>
<!-- define the default order_by field for SQL queries -->
<order_by>date_orig</order_by>
<!-- define the methods -->
<limit>25</limit>
<!-- define database indexes -->
<index>
<account>account_id</account>
<memo>memo</memo>
</index>
<!-- Page Display Titles -->
<title>
<add>Add Account Memo</add>
<view>Account Memo</view>
</title>
<!-- define the fields -->
<field>
<id>
<type>I8</type>
</id>
<site_id>
<type>I4</type>
</site_id>
<date_orig>
<display>Date</display>
<type>I8</type>
<validate>date-time</validate>
<convert>date-now</convert>
</date_orig>
<staff_id>
<display>Staff</display>
<type>I8</type>
<asso_table>account</asso_table>
<asso_field>username</asso_field>
</staff_id>
<account_id>
<display>Account</display>
<type>I8</type>
</account_id>
<type>
<display>Type</display>
<type>C(32)</type>
<validate>any</validate>
</type>
<memo>
<display>Memo</display>
<type>C(255)</type>
<validate>any</validate>
</memo>
<misc>
<type>C(32)</type>
</misc>
</field>
<!-- define all the methods for this class, and the fields they have access to, if applicable. -->
<method>
<add>staff_id,account_id,type,memo</add>
<update>id,site_id,date_orig,staff_id,account_id,type,memo</update>
<delete>id,site_id,date_orig,staff_id,account_id,type,memo</delete>
<view>id,site_id,date_orig,staff_id,account_id,type,memo</view>
<search>id,site_id,date_orig,staff_id,account_id,type,memo</search>
</method>
<!-- define the method triggers -->
<trigger>0</trigger>
<!-- Template Helpers -->
<tpl>
<search_show>
<checkbox>
<field>id</field>
<width>25px</width>
</checkbox>
<date_orig>
<field>date_orig</field>
</date_orig>
<staff_id>
<field>staff_id</field>
</staff_id>
<type>
<field>type</field>
</type>
<memo>
<field>memo</field>
</memo>
</search_show>
</tpl>
</construct>