6
0
mod_siteredirect/mod_siteredirect.xml
Robot eadb96582e
Update on v5.0.0 (changes towards the next release)
Here's an update on the current version, which includes changes towards the next release still in development.
2024-10-13 22:54:01 +02:00

84 lines
2.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<extension type="module" version="5.0" client="site" method="upgrade">
<name>MOD_SITEREDIRECT</name>
<creationDate>13th October, 2024</creationDate>
<author>Llewellyn van der Merwe</author>
<authorEmail>joomla@vdm.io</authorEmail>
<authorUrl>https://dev.vdm.io</authorUrl>
<copyright>Copyright (C) 2015 Vast Development Method. All rights reserved.</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
<version>5.0.0</version>
<description>MOD_SITEREDIRECT_XML_DESCRIPTION</description>
<!-- Scripts to run on installation -->
<scriptfile>script.php</scriptfile>
<!-- Language files -->
<languages folder="language">
<language tag="en-GB">en-GB/en-GB.mod_siteredirect.ini</language>
<language tag="en-GB">en-GB/en-GB.mod_siteredirect.sys.ini</language>
</languages>
<!-- Model files -->
<files>
<filename module="mod_siteredirect">mod_siteredirect.php</filename>
<filename>index.html</filename>
<folder>language</folder>
<folder>fields</folder>
<folder>rules</folder>
<folder>tmpl</folder>
</files>
<!-- Config parameter -->
<config>
<fields name="params">
<!-- default paths of basic fieldset points to the module -->
<fieldset name="basic" label="MOD_SITEREDIRECT_DETAILS"
addrulepath="/modules/mod_siteredirect/rules"
addfieldpath="/modules/mod_siteredirect/fields"
>
<!-- Redirect Field. Type: Subform. (joomla) -->
<field
type="subform"
name="redirect"
label="MOD_SITEREDIRECT_REDIRECT_LABEL"
layout="joomla.form.field.subform.repeatable"
multiple="true"
buttons="add,remove,move"
description="MOD_SITEREDIRECT_REDIRECT_DESCRIPTION"
icon="list"
max="10"
min="1">
<form hidden="true" name="list_redirect_modal" repeat="true">
<!-- Groups Field. Type: Usergrouplist. (joomla) -->
<field
type="usergrouplist"
name="groups"
label="MOD_SITEREDIRECT_GROUPS_LABEL"
description="MOD_SITEREDIRECT_GROUPS_DESCRIPTION"
layout="joomla.form.field.list-fancy-select"
required="true"
multiple="true"
/>
<!-- Url Field. Type: Url. (joomla) -->
<field
type="url"
name="url"
label="MOD_SITEREDIRECT_URL_LABEL"
size="60"
maxlength="150"
description="MOD_SITEREDIRECT_URL_DESCRIPTION"
class="text_area"
required="true"
filter="url"
validated="url"
scheme="http,https"
message="MOD_SITEREDIRECT_URL_MESSAGE"
hint="MOD_SITEREDIRECT_URL_HINT"
/>
</form>
</field>
</fieldset>
</fields>
</config>
</extension>