-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdeploytools.xml
More file actions
58 lines (54 loc) · 2.26 KB
/
deploytools.xml
File metadata and controls
58 lines (54 loc) · 2.26 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
<?xml version="1.0" encoding="utf-8"?>
<extension version="2.5" type="plugin" group="system" method="upgrade">
<name>plg_system_deploytools</name>
<author>Techjoomla</author>
<creationDate>8th May 2013</creationDate>
<copyright>Copyright (C) 2013 Techjoomla. All rights reserved.</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
<authorEmail>contact@techjoomla.com</authorEmail>
<authorUrl>http://www.techjoomla.com</authorUrl>
<version>1.0</version>
<description>Tools to help simplify Joomla website deployments</description>
<files>
<filename plugin="deploytools">deploytools.php</filename>
</files>
<config>
<fields name="params">
<fieldset name="basic">
<field name="version_no" type="text" label="Version Number" description="Use the version number to denote the version your website is in" />
<field name="version_filename" type="text" label="Version Filename" description="If you want the plugin to pick up the version number from a file, specify the file name/path. This is relative to Joomla root. Note that you will need to keep the above field empty to use this option." default=".htversion" />
<field name="process_css" type="radio"
default="1"
description="If set to yes, will append the version number to all CSS files loaded on the site"
label="Process CSS Files"
>
<option
value="0">JNo</option>
<option
value="1">JYes</option>
</field>
<field name="process_js" type="radio"
default="1"
description="If set to yes, will append the version number to all javascript files loaded on the site"
label="Process JS Files"
>
<option
value="0">JNo</option>
<option
value="1">JYes</option>
</field>
<field name="process_custom" type="radio"
default="1"
description="If set to yes, will append the version number to all javascript and CSS files loaded on the site with custom tag in header"
label="Process JS and CSS Files in custom tags"
>
<option
value="0">JNo</option>
<option
value="1">JYes</option>
</field>
<field name="remove_external_files" type="textarea" label="Remove External JS" description="If set to yes, stop the external JS files from loading. CAUTION: This may break your site." />
</fieldset>
</fields>
</config>
</extension>