com_extensiondistributor/admin/models/forms/download.xml

157 lines
4.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<form
addrulepath="/administrator/components/com_extensiondistributor/models/rules"
addfieldpath="/administrator/components/com_extensiondistributor/models/fields"
>
<fieldset name="details">
<!-- Default Fields. -->
<!-- Id Field. Type: Text (joomla) -->
<field
name="id"
type="text" class="readonly" label="JGLOBAL_FIELD_ID_LABEL"
description ="JGLOBAL_FIELD_ID_DESC" size="10" default="0"
readonly="true"
/>
<!-- User Created Field. Type: User (joomla) -->
<field
name="created_by"
type="user"
label="COM_EXTENSIONDISTRIBUTOR_DOWNLOAD_CREATED_BY_LABEL"
description="COM_EXTENSIONDISTRIBUTOR_DOWNLOAD_CREATED_BY_DESC"
/>
<!-- Date Modified Field. Type: Calendar (joomla) -->
<field name="modified" type="calendar" class="readonly"
label="COM_EXTENSIONDISTRIBUTOR_DOWNLOAD_MODIFIED_DATE_LABEL" description="COM_EXTENSIONDISTRIBUTOR_DOWNLOAD_MODIFIED_DATE_DESC"
size="22" readonly="true" format="%Y-%m-%d %H:%M:%S" filter="user_utc" />
<!-- User Modified Field. Type: User (joomla) -->
<field name="modified_by" type="user"
label="COM_EXTENSIONDISTRIBUTOR_DOWNLOAD_MODIFIED_BY_LABEL"
description="COM_EXTENSIONDISTRIBUTOR_DOWNLOAD_MODIFIED_BY_DESC"
class="readonly"
readonly="true"
filter="unset"
/>
<!-- Ordering Field. Type: Numbers (joomla) -->
<field
name="ordering"
type="number"
class="inputbox validate-ordering"
label="COM_EXTENSIONDISTRIBUTOR_DOWNLOAD_ORDERING_LABEL"
description=""
default="0"
size="6"
required="false"
/>
<!-- Version Field. Type: Text (joomla) -->
<field
name="version"
type="text"
class="readonly"
label="COM_EXTENSIONDISTRIBUTOR_DOWNLOAD_VERSION_LABEL"
description="COM_EXTENSIONDISTRIBUTOR_DOWNLOAD_VERSION_DESC"
size="6"
readonly="true"
filter="unset"
/>
<!-- Dynamic Fields. -->
<!-- Transaction Field. Type: List. (joomla) -->
<field
type="list"
name="transaction"
label="COM_EXTENSIONDISTRIBUTOR_DOWNLOAD_TRANSACTION_LABEL"
filter="STRING"
default="Other">
<!-- Option Set. -->
<option value="Web">
COM_EXTENSIONDISTRIBUTOR_DOWNLOAD_WEBSITE</option>
<option value="Joomla">
COM_EXTENSIONDISTRIBUTOR_DOWNLOAD_JOOMLA_UPDATER</option>
<option value="Watchful">
COM_EXTENSIONDISTRIBUTOR_DOWNLOAD_WATCHFUL</option>
<option value="Other">
COM_EXTENSIONDISTRIBUTOR_DOWNLOAD_OTHER</option>
</field>
<!-- Package Field. Type: Packagelog. (custom) -->
<field
type="packagelog"
name="package"
label="COM_EXTENSIONDISTRIBUTOR_DOWNLOAD_PACKAGE_LABEL"
multiple="false"
button="false"
/>
<!-- User Field. Type: User. (joomla) -->
<field
type="user"
name="user"
label="COM_EXTENSIONDISTRIBUTOR_DOWNLOAD_USER_LABEL"
/>
<!-- Ip Field. Type: Text. (joomla) -->
<field
type="text"
name="ip"
label="COM_EXTENSIONDISTRIBUTOR_DOWNLOAD_IP_LABEL"
default="0.0.0.0"
filter="STRING"
/>
<!-- Domain Field. Type: Text. (joomla) -->
<field
type="text"
name="domain"
label="COM_EXTENSIONDISTRIBUTOR_DOWNLOAD_DOMAIN_LABEL"
filter="STRING"
/>
<!-- Created Field. Type: Calendar. (joomla) -->
<field
type="calendar"
name="created"
label="COM_EXTENSIONDISTRIBUTOR_DOWNLOAD_CREATED_LABEL"
default="NOW"
format="true"
filter="user_utc"
translateformat="true"
/>
<!-- Published Field. Type: Radio. (joomla) -->
<field
type="radio"
name="published"
label="COM_EXTENSIONDISTRIBUTOR_DOWNLOAD_PUBLISHED_LABEL"
class="btn-group btn-group-yesno"
default="1">
<!-- Option Set. -->
<option value="1">
COM_EXTENSIONDISTRIBUTOR_DOWNLOAD_YES</option>
<option value="0">
COM_EXTENSIONDISTRIBUTOR_DOWNLOAD_NO</option>
</field>
<!-- Key Field. Type: Text. (joomla) -->
<field
type="text"
name="key"
label="COM_EXTENSIONDISTRIBUTOR_DOWNLOAD_KEY_LABEL"
class="input-xxlarge input-large-text"
filter="STRING"
/>
</fieldset>
<!-- Access Control Fields. -->
<fieldset name="accesscontrol">
<!-- Asset Id Field. Type: Hidden (joomla) -->
<field
name="asset_id"
type="hidden"
filter="unset"
/>
<!-- Rules Field. Type: Rules (joomla) -->
<field
name="rules"
type="rules"
label="Permissions in relation to this download"
translate_label="false"
filter="rules"
validate="rules"
class="inputbox"
component="com_extensiondistributor"
section="download"
/>
</fieldset>
</form>