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

118 lines
2.7 KiB
XML

<?xml version="1.0" encoding="ISO-8859-1" ?>
<construct>
<!-- Module name -->
<module>staff</module>
<!-- Module supporting database table -->
<table>staff</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>I4</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>
<staff>
<type>C(16)</type>
</staff>
<account_id>
<asso_table>account</asso_table>
<asso_field>username</asso_field>
<display>Account</display>
<type>I8</type>
<validate>any</validate>
</account_id>
<department_avail>
<type>C(255)</type>
<validate>any</validate>
<convert>array</convert>
</department_avail>
<nickname>
<display>Nick Name</display>
<min_len>1</min_len>
<max_len>128</max_len>
<type>C(128)</type>
<validate>any</validate>
</nickname>
<notify_new>
<type>L</type>
</notify_new>
<notify_change>
<type>L</type>
</notify_change>
<signature>
<display>Signature</display>
<type>X2</type>
</signature>
</field>
<!-- Methods for this class, and the fields they have access to, if applicable -->
<method>
<add>account_id,nickname</add>
<update>account_id,department_avail,nickname,signature</update>
<delete>id</delete>
<view>id,date_orig,account_id,department_avail,nickname,signature</view>
<search>id,date_orig,account_id,department_avail,nickname,signature</search>
</method>
<!-- Method triggers -->
<trigger></trigger>
<!-- Template page display titles -->
<title>
<add>Add Staff</add>
<view>View Staff</view>
</title>
<!-- Template helpers -->
<tpl>
<search_show>
<checkbox>
<field>id</field>
<type>checkbox</type>
<width>25px</width>
</checkbox>
<nickname>
<field>nickname</field>
</nickname>
<account_id>
<field>account_id</field>
</account_id>
<notify_new>
<field>notify_new</field>
<type>bool</type>
</notify_new>
<notify_change>
<field>notify_change</field>
<type>bool</type>
</notify_change>
</search_show>
</tpl>
</construct>