-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmod_aggregations.xml
More file actions
93 lines (93 loc) · 4.51 KB
/
mod_aggregations.xml
File metadata and controls
93 lines (93 loc) · 4.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?xml version="1.0" encoding="UTF-8"?>
<extension type="module" version="3.0" client="site" method="upgrade">
<name>Aggregation web form</name>
<author>David Hendy</author>
<creationDate>August 2020</creationDate>
<copyright>Copyright (C) 2020 2buy2.com</copyright>
<license>GNU General Public License version 2 or later</license>
<authorEmail>david.hendy@2buy2.com</authorEmail>
<authorURL>http://www.2buy2.com/</authorURL>
<version>0.1.0</version>
<description>Submit data from web form into SugarCRM.</description>
<namespace>2buy2\Module\Aggregations</namespace>
<updateservers>
<server type="extension" name="Aggregtion Web Form" priority="1">https://github.com/hendyd/mod_aggregations/blob/master/update_mod.xml</server>
</updateservers>
<install>
<sql>
<file driver="mysql" charset="utf8">sql/mysql/install.mysql.utf8.sql</file>
</sql>
</install>
<uninstall>
<sql>
<file driver="mysql" charset="utf8">sql/mysql/uninstall.mysql.utf8.sql</file>
</sql>
</uninstall>
<files>
<filename>manifest.xml</filename>
<filename>mod_aggregations.xml</filename>
<filename module="mod_aggregations">mod_aggregations.php</filename>
<filename>helper.php</filename>
<filename>index.html</filename>
<folder>tmpl</folder>
<folder>assets</folder>
<folder>sql</folder>
</files>
<languages folder="language">
<language tag="en-GB">en-GB/en-GB.mod_aggregations.ini</language>
</languages>
<config>
<fields name="params">
<fieldset name="basic">
<field name="template" type="list" default="" required="true" label="Select a display option" >
<option value="">Please Select</option>
<option value="phase1">Basic</option>
</field>
<field name="subcategory" type="list" required="true" default="" label="Select a category" description="Which category is this form linking against?">
<option value="">Please Select</option>
<option value="Auditor Services">Auditor Services</option>
<option value="Building and Facilities Management Services">Building and Facilities Management Services</option>
<option value="Catering">Catering</option>
<option value="Cleaning">Cleaning</option>
<option value="Consultancy">Consultancy</option>
<option value="DBS_Checks">DBS Checks</option>
<option value="Educational">Educational Supplies</option>
<option value="Electricity">Electricity</option>
<option value="Energy Management Services">Energy Management Services</option>
<option value="Financial Software">Financial Software</option>
<option value="Fire Safety">Fire Safety</option>
<option value="Furniture">Furniture</option>
<option value="Gas">Gas</option>
<option value="Grounds Maintenance">Grounds Maintenance</option>
<option value="Human Resources">Human Resources</option>
<option value="Insurance">Insurance</option>
<option value="IT Hardware">IT Hardware</option>
<option value="IT Maintenance and Support">IT Maintenance and Support</option>
<option value="IT Software">IT Software</option>
<option value="LED Lighting">LED Lighting</option>
<option value="Legal">Legal</option>
<option value="Mechanical and Electrical Engineering Services">Mechanical and Electrical Engineering Services</option>
<option value="Oil">Oil</option>
<option value="Payroll">Payroll</option>
<option value="Photocopying">Photocopying</option>
<option value="Project Management Services">Project Management Services</option>
<option value="Security Services">Security Services</option>
<option value="Solar Energy Panels">Solar Energy Panels</option>
<option value="Stationery">Stationery</option>
<option value="Supply and Agency Staff">Supply and Agency Staff</option>
<option value="Telecoms Broadband">Telecoms Broadband</option>
<option value="Telecoms Landline">Telecoms Landline</option>
<option value="Telecoms Mobile">Telecoms Mobile</option>
<option value="Telecoms Systems">Telecoms Systems</option>
<option value="Transport Services">Transport Services</option>
<option value="Waste Management">Waste Management</option>
<option value="Water">Water</option>
<option value="Web Development">Web Development</option>
</field>
<field name="crm_supplier" type="list" required="true" label="Select a supplier" description="Which supplier(s) is this form linking against?" multiple="multiple">
<option value="6470f9c2-4c65-11e8-9bbf-00155d543e05">Banner</option>
</field>
</fieldset>
</fields>
</config>
</extension>