Refactor initialization flow to accommodate future scalability and integration with all designated areas. Refactor the Creator Builders class. Refactor the FieldString and FieldXML classes.
356 lines
11 KiB
XML
356 lines
11 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<form
|
|
addruleprefix="VDM\Component\Componentbuilder\Administrator\Rule"
|
|
addfieldprefix="VDM\Component\Componentbuilder\Administrator\Field"
|
|
>
|
|
<config>
|
|
<inlinehelp button="show"/>
|
|
</config>
|
|
<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"
|
|
/>
|
|
<!-- Date Created Field. Type: Calendar (joomla) -->
|
|
<field
|
|
name="created"
|
|
type="calendar"
|
|
label="COM_COMPONENTBUILDER_REPOSITORY_CREATED_DATE_LABEL"
|
|
description="COM_COMPONENTBUILDER_REPOSITORY_CREATED_DATE_DESC"
|
|
size="22"
|
|
format="%Y-%m-%d %H:%M:%S"
|
|
filter="user_utc"
|
|
/>
|
|
<!-- User Created Field. Type: User (joomla) -->
|
|
<field
|
|
name="created_by"
|
|
type="user"
|
|
label="COM_COMPONENTBUILDER_REPOSITORY_CREATED_BY_LABEL"
|
|
description="COM_COMPONENTBUILDER_REPOSITORY_CREATED_BY_DESC"
|
|
/>
|
|
<!-- Published Field. Type: List (joomla) -->
|
|
<field name="published" type="list" label="JSTATUS"
|
|
description="JFIELD_PUBLISHED_DESC" class="chzn-color-state"
|
|
filter="intval" size="1" default="1" >
|
|
<option value="1">
|
|
JPUBLISHED</option>
|
|
<option value="0">
|
|
JUNPUBLISHED</option>
|
|
<option value="2">
|
|
JARCHIVED</option>
|
|
<option value="-2">
|
|
JTRASHED</option>
|
|
</field>
|
|
<!-- Date Modified Field. Type: Calendar (joomla) -->
|
|
<field name="modified" type="calendar" class="readonly"
|
|
label="COM_COMPONENTBUILDER_REPOSITORY_MODIFIED_DATE_LABEL" description="COM_COMPONENTBUILDER_REPOSITORY_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_COMPONENTBUILDER_REPOSITORY_MODIFIED_BY_LABEL"
|
|
description="COM_COMPONENTBUILDER_REPOSITORY_MODIFIED_BY_DESC"
|
|
class="readonly"
|
|
readonly="true"
|
|
filter="unset"
|
|
/>
|
|
<!-- Access Field. Type: Accesslevel (joomla) -->
|
|
<field name="access"
|
|
type="accesslevel"
|
|
label="JFIELD_ACCESS_LABEL"
|
|
description="JFIELD_ACCESS_DESC"
|
|
default="1"
|
|
required="false"
|
|
/>
|
|
<!-- Ordering Field. Type: Numbers (joomla) -->
|
|
<field
|
|
name="ordering"
|
|
type="number"
|
|
class="inputbox validate-ordering"
|
|
label="COM_COMPONENTBUILDER_REPOSITORY_ORDERING_LABEL"
|
|
description=""
|
|
default="0"
|
|
size="6"
|
|
required="false"
|
|
/>
|
|
<!-- Version Field. Type: Text (joomla) -->
|
|
<field
|
|
name="version"
|
|
type="text"
|
|
class="readonly"
|
|
label="COM_COMPONENTBUILDER_REPOSITORY_VERSION_LABEL"
|
|
description="COM_COMPONENTBUILDER_REPOSITORY_VERSION_DESC"
|
|
size="6"
|
|
default="1"
|
|
readonly="true"
|
|
filter="unset"
|
|
/>
|
|
<!-- Was added due to Permissions JS needing a Title field -->
|
|
<!-- Let us know at gh-629 should this change -->
|
|
<!-- https://github.com/vdm-io/Joomla-Component-Builder/issues/629#issuecomment-750117235 -->
|
|
<field
|
|
name="title"
|
|
type="hidden"
|
|
default="componentbuilder repository"
|
|
/>
|
|
<!-- Dynamic Fields. -->
|
|
<!-- System_name Field. Type: Text. (joomla) -->
|
|
<field
|
|
type="text"
|
|
name="system_name"
|
|
label="COM_COMPONENTBUILDER_REPOSITORY_SYSTEM_NAME_LABEL"
|
|
size="10"
|
|
maxlength="50"
|
|
default=""
|
|
description="COM_COMPONENTBUILDER_REPOSITORY_SYSTEM_NAME_DESCRIPTION"
|
|
class="text_area"
|
|
filter="STRING"
|
|
message="COM_COMPONENTBUILDER_REPOSITORY_SYSTEM_NAME_MESSAGE"
|
|
hint="COM_COMPONENTBUILDER_REPOSITORY_SYSTEM_NAME_HINT"
|
|
/>
|
|
<!-- Organisation Field. Type: Text. (joomla) -->
|
|
<field
|
|
type="text"
|
|
name="organisation"
|
|
label="COM_COMPONENTBUILDER_REPOSITORY_ORGANISATION_LABEL"
|
|
size="60"
|
|
maxlength="150"
|
|
description="COM_COMPONENTBUILDER_REPOSITORY_ORGANISATION_DESCRIPTION"
|
|
class="text_area"
|
|
required="true"
|
|
filter="STRING"
|
|
message="COM_COMPONENTBUILDER_REPOSITORY_ORGANISATION_MESSAGE"
|
|
hint="COM_COMPONENTBUILDER_REPOSITORY_ORGANISATION_HINT"
|
|
/>
|
|
<!-- Repository Field. Type: Text. (joomla) -->
|
|
<field
|
|
type="text"
|
|
name="repository"
|
|
label="COM_COMPONENTBUILDER_REPOSITORY_REPOSITORY_LABEL"
|
|
size="70"
|
|
maxlength="150"
|
|
class="text_area"
|
|
readonly="false"
|
|
required="true"
|
|
filter="CMD"
|
|
hint="COM_COMPONENTBUILDER_REPOSITORY_REPOSITORY_HINT"
|
|
autocomplete="on"
|
|
/>
|
|
<!-- Target Field. Type: List. (joomla) -->
|
|
<field
|
|
type="list"
|
|
name="target"
|
|
label="COM_COMPONENTBUILDER_REPOSITORY_TARGET_LABEL"
|
|
description="COM_COMPONENTBUILDER_REPOSITORY_TARGET_DESCRIPTION"
|
|
class="list_class"
|
|
layout="joomla.form.field.list-fancy-select"
|
|
multiple="false"
|
|
filter="INT"
|
|
required="true"
|
|
validate="int">
|
|
<!-- Option Set. -->
|
|
<option value="">
|
|
COM_COMPONENTBUILDER_REPOSITORY_SELECT_AN_OPTION</option>
|
|
<option value="4">
|
|
COM_COMPONENTBUILDER_REPOSITORY_JCB_PACKAGES</option>
|
|
<option value="3">
|
|
COM_COMPONENTBUILDER_REPOSITORY_JOOMLA_FIELD_TYPES</option>
|
|
<option value="2">
|
|
COM_COMPONENTBUILDER_REPOSITORY_JOOMLA_POWER</option>
|
|
<option value="5">
|
|
COM_COMPONENTBUILDER_REPOSITORY_SNIPPETS</option>
|
|
<option value="1">
|
|
COM_COMPONENTBUILDER_REPOSITORY_SUPER_POWER</option>
|
|
</field>
|
|
<!-- Type Field. Type: List. (joomla) -->
|
|
<field
|
|
type="list"
|
|
name="type"
|
|
label="COM_COMPONENTBUILDER_REPOSITORY_TYPE_LABEL"
|
|
description="COM_COMPONENTBUILDER_REPOSITORY_TYPE_DESCRIPTION"
|
|
class="list_class"
|
|
layout="joomla.form.field.list-fancy-select"
|
|
multiple="false"
|
|
filter="INT"
|
|
required="true"
|
|
validate="int">
|
|
<!-- Option Set. -->
|
|
<option value="">
|
|
COM_COMPONENTBUILDER_REPOSITORY_SELECT_AN_OPTION</option>
|
|
<option value="1">
|
|
COM_COMPONENTBUILDER_REPOSITORY_GITEA</option>
|
|
</field>
|
|
<!-- Base Field. Type: Url. (joomla) -->
|
|
<field
|
|
type="url"
|
|
name="base"
|
|
label="COM_COMPONENTBUILDER_REPOSITORY_BASE_LABEL"
|
|
size="70"
|
|
maxlength="150"
|
|
default="https://git.vdm.dev"
|
|
description="COM_COMPONENTBUILDER_REPOSITORY_BASE_DESCRIPTION"
|
|
class="text_area"
|
|
required="true"
|
|
filter="url"
|
|
validated="url"
|
|
scheme="http,https"
|
|
message="COM_COMPONENTBUILDER_REPOSITORY_BASE_MESSAGE"
|
|
hint="COM_COMPONENTBUILDER_REPOSITORY_BASE_HINT"
|
|
autocomplete="on"
|
|
showon="type:1"
|
|
/>
|
|
<!-- Guid Field. Type: Text. (joomla) -->
|
|
<field
|
|
type="text"
|
|
name="guid"
|
|
label="COM_COMPONENTBUILDER_REPOSITORY_GUID_LABEL"
|
|
size="40"
|
|
maxlength="40"
|
|
description="COM_COMPONENTBUILDER_REPOSITORY_GUID_DESCRIPTION"
|
|
class="text_area"
|
|
readonly="true"
|
|
filter="CMD"
|
|
validate="guid"
|
|
hint="COM_COMPONENTBUILDER_REPOSITORY_GUID_HINT"
|
|
/>
|
|
<!-- Addplaceholders Field. Type: Subform. (joomla) -->
|
|
<field
|
|
type="subform"
|
|
name="addplaceholders"
|
|
label="COM_COMPONENTBUILDER_REPOSITORY_ADDPLACEHOLDERS_LABEL"
|
|
layout="joomla.form.field.subform.repeatable-table"
|
|
multiple="true"
|
|
description="COM_COMPONENTBUILDER_REPOSITORY_ADDPLACEHOLDERS_DESCRIPTION"
|
|
default=""
|
|
icon="list">
|
|
<form hidden="true" name="list_addplaceholders_modal" repeat="true">
|
|
<!-- Target Field. Type: Text. (joomla) -->
|
|
<field
|
|
type="text"
|
|
name="target"
|
|
label="COM_COMPONENTBUILDER_REPOSITORY_TARGET_LABEL"
|
|
size="50"
|
|
maxlength="150"
|
|
description="COM_COMPONENTBUILDER_REPOSITORY_TARGET_DESCRIPTION"
|
|
class="text_area"
|
|
required="true"
|
|
filter="STRING"
|
|
message="COM_COMPONENTBUILDER_REPOSITORY_TARGET_MESSAGE"
|
|
hint="COM_COMPONENTBUILDER_REPOSITORY_TARGET_HINT"
|
|
autocomplete="off"
|
|
/>
|
|
<!-- Value Field. Type: Textarea. (joomla) -->
|
|
<field
|
|
type="textarea"
|
|
name="value"
|
|
label="COM_COMPONENTBUILDER_REPOSITORY_VALUE_LABEL"
|
|
rows="1"
|
|
cols="5"
|
|
default="default text"
|
|
description="COM_COMPONENTBUILDER_REPOSITORY_VALUE_DESCRIPTION"
|
|
message="COM_COMPONENTBUILDER_REPOSITORY_VALUE_MESSAGE"
|
|
class="text_area span12"
|
|
filter="RAW"
|
|
hint="COM_COMPONENTBUILDER_REPOSITORY_VALUE_HINT"
|
|
required="true"
|
|
/>
|
|
</form>
|
|
</field>
|
|
<!-- Placeholder_note Field. Type: Note. A None Database Field. (joomla) -->
|
|
<field type="note" name="placeholder_note" label="COM_COMPONENTBUILDER_REPOSITORY_PLACEHOLDER_NOTE_LABEL" description="COM_COMPONENTBUILDER_REPOSITORY_PLACEHOLDER_NOTE_DESCRIPTION" heading="h4" class="alert alert-info placeholder_note" />
|
|
<!-- Access_repo Field. Type: Radio. (joomla) -->
|
|
<field
|
|
type="radio"
|
|
name="access_repo"
|
|
label="COM_COMPONENTBUILDER_REPOSITORY_ACCESS_REPO_LABEL"
|
|
description="COM_COMPONENTBUILDER_REPOSITORY_ACCESS_REPO_DESCRIPTION"
|
|
class="btn-group btn-group-yesno"
|
|
default="0">
|
|
<!-- Option Set. -->
|
|
<option value="0">
|
|
COM_COMPONENTBUILDER_REPOSITORY_GLOBAL</option>
|
|
<option value="1">
|
|
COM_COMPONENTBUILDER_REPOSITORY_OVERRIDE</option>
|
|
</field>
|
|
<!-- Write_branch Field. Type: Text. (joomla) -->
|
|
<field
|
|
type="text"
|
|
name="write_branch"
|
|
label="COM_COMPONENTBUILDER_REPOSITORY_WRITE_BRANCH_LABEL"
|
|
size="128"
|
|
maxlength="50"
|
|
description="COM_COMPONENTBUILDER_REPOSITORY_WRITE_BRANCH_DESCRIPTION"
|
|
class="text_area"
|
|
filter="STRING"
|
|
message="COM_COMPONENTBUILDER_REPOSITORY_WRITE_BRANCH_MESSAGE"
|
|
hint="COM_COMPONENTBUILDER_REPOSITORY_WRITE_BRANCH_HINT"
|
|
/>
|
|
<!-- Read_branch Field. Type: Text. (joomla) -->
|
|
<field
|
|
type="text"
|
|
name="read_branch"
|
|
label="COM_COMPONENTBUILDER_REPOSITORY_READ_BRANCH_LABEL"
|
|
size="128"
|
|
maxlength="50"
|
|
description="COM_COMPONENTBUILDER_REPOSITORY_READ_BRANCH_DESCRIPTION"
|
|
class="text_area"
|
|
filter="STRING"
|
|
message="COM_COMPONENTBUILDER_REPOSITORY_READ_BRANCH_MESSAGE"
|
|
hint="COM_COMPONENTBUILDER_REPOSITORY_READ_BRANCH_HINT"
|
|
/>
|
|
<!-- Token Field. Type: Password. (joomla) -->
|
|
<field
|
|
type="password"
|
|
name="token"
|
|
label="COM_COMPONENTBUILDER_REPOSITORY_TOKEN_LABEL"
|
|
size="128"
|
|
description="COM_COMPONENTBUILDER_REPOSITORY_TOKEN_DESCRIPTION"
|
|
message="Error! Please add token here."
|
|
class="text_area"
|
|
filter="STRING"
|
|
hint="COM_COMPONENTBUILDER_REPOSITORY_TOKEN_HINT"
|
|
autocomplete="off"
|
|
showon="type:1[AND]access_repo:1"
|
|
/>
|
|
<!-- Username Field. Type: Text. (joomla) -->
|
|
<field
|
|
type="text"
|
|
name="username"
|
|
label="COM_COMPONENTBUILDER_REPOSITORY_USERNAME_LABEL"
|
|
size="128"
|
|
maxlength="50"
|
|
description="COM_COMPONENTBUILDER_REPOSITORY_USERNAME_DESCRIPTION"
|
|
class="text_area"
|
|
filter="STRING"
|
|
message="COM_COMPONENTBUILDER_REPOSITORY_USERNAME_MESSAGE"
|
|
hint="COM_COMPONENTBUILDER_REPOSITORY_USERNAME_HINT"
|
|
autocomplete="on"
|
|
showon="type:1[AND]access_repo:1"
|
|
/>
|
|
</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 repository"
|
|
translate_label="false"
|
|
filter="rules"
|
|
validate="rules"
|
|
class="inputbox"
|
|
component="com_componentbuilder"
|
|
section="repository"
|
|
/>
|
|
</fieldset>
|
|
</form> |