-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmod_blueprint.xml
More file actions
91 lines (85 loc) · 3.38 KB
/
mod_blueprint.xml
File metadata and controls
91 lines (85 loc) · 3.38 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
<?xml version="1.0" encoding="utf-8"?>
<extension type="module" version="4.4" client="site" method="upgrade">
<name>MOD_BLUEPRINT</name>
<creationDate>[CREATED-DATE]</creationDate>
<author>[CREATOR-COMPANY] | [CREATOR-FULLNAME]</author>
<authorEmail>[CREATOR-EMAIL]</authorEmail>
<authorUrl>[CREATOR-URL]</authorUrl>
<copyright>Copyright ©[CREATED-YEAR] by [CREATOR-COMPANY]</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
<namespace path="src">NXD\Module\BluePrint</namespace>
<version>[EXTENSION-VERSION]</version>
<description><![CDATA[MOD_BLUEPRINT_XML_DESCRIPTION]]></description>
<!-- Scripts to run on installation / update / uninstall -->
<scriptfile>script.php</scriptfile>
<!-- SQL files to run on installation / update / uninstall -->
<install> <!-- Runs on install -->
<sql>
<file driver="mysql" charset="utf8">sql/install.mysql.utf8.sql</file>
</sql>
</install>
<uninstall> <!-- Runs on uninstall -->
<sql>
<file driver="mysql" charset="utf8">sql/uninstall.mysql.utf8.sql</file>
</sql>
</uninstall>
<update> <!-- Runs on update -->
<schemas>
<schemapath type="mysql">sql/updates/mysql</schemapath>
</schemas>
</update>
<files>
<folder module="mod_blueprint">services</folder>
<folder>language</folder>
<folder>src</folder>
<folder>sql</folder>
<folder>tmpl</folder>
<file>mod_blueprint.xml</file>
</files>
<!-- Media files -->
<media folder="media/mod_blueprint" destination="mod_blueprint">
<folder>js</folder>
<folder>css</folder>
<filename>joomla.asset.json</filename>
</media>
<languages>
<language tag="en-GB">language/en-GB/mod_blueprint.ini</language>
<language tag="en-GB">language/en-GB/mod_blueprint.sys.ini</language>
</languages>
<config>
<fields name="params">
<fieldset
name="basic"
addfieldprefix="NXD\Module\BluePrint\Site\Field"
>
<field
name="context"
type="MySelect"
label="MOD_BLUEPRINT_FIELD_CONTEXT_LABEL"
description="MOD_BLUEPRINT_FIELD_CONTEXT_DESC"
>
<option value="local-option">MOD_BLUEPRINT_OPT_OPTION42</option>
</field>
<field
name="layout"
type="modulelayout"
class="form-select"
layout="joomla.form.field.groupedlist-fancy-select"
label="MOD_BLUEPRINT_FIELD_LAYOUT_LABEL"
description="MOD_BLUEPRINT_FIELD_LAYOUT_DESC"
client_id="0"
/>
</fieldset>
<fieldset name="advanced">
<field
name="module-classes"
type="textarea"
label="MOD_BLUEPRINT_FIELD_MODULE_CLASSES_LABEL"
description="MOD_BLUEPRINT_FIELD_MODULE_CLASSES_DESC"
rows="3"
hint="MOD_BLUEPRINT_FIELD_MODULE_CLASSES_HINT"
/>
</fieldset>
</fields>
</config>
</extension>