2021-03-05 03:08:47 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<form
|
|
|
|
addrulepath="/administrator/components/com_componentbuilder/models/rules"
|
|
|
|
addfieldpath="/administrator/components/com_componentbuilder/models/fields"
|
|
|
|
>
|
2016-01-30 20:28:43 +00:00
|
|
|
<fieldset name="details">
|
2018-03-18 04:28:54 +00:00
|
|
|
<!-- 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_LAYOUT_CREATED_DATE_LABEL"
|
|
|
|
description="COM_COMPONENTBUILDER_LAYOUT_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_LAYOUT_CREATED_BY_LABEL"
|
|
|
|
description="COM_COMPONENTBUILDER_LAYOUT_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_LAYOUT_MODIFIED_DATE_LABEL" description="COM_COMPONENTBUILDER_LAYOUT_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_LAYOUT_MODIFIED_BY_LABEL"
|
|
|
|
description="COM_COMPONENTBUILDER_LAYOUT_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_LAYOUT_ORDERING_LABEL"
|
|
|
|
description=""
|
|
|
|
default="0"
|
|
|
|
size="6"
|
|
|
|
required="false"
|
|
|
|
/>
|
|
|
|
<!-- Version Field. Type: Text (joomla) -->
|
|
|
|
<field
|
|
|
|
name="version"
|
|
|
|
type="text"
|
|
|
|
class="readonly"
|
|
|
|
label="COM_COMPONENTBUILDER_LAYOUT_VERSION_LABEL"
|
|
|
|
description="COM_COMPONENTBUILDER_LAYOUT_VERSION_DESC"
|
|
|
|
size="6"
|
|
|
|
readonly="true"
|
|
|
|
filter="unset"
|
|
|
|
/>
|
2020-12-24 13:39:33 +00:00
|
|
|
<!-- 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 layout"
|
|
|
|
/>
|
2018-03-18 04:28:54 +00:00
|
|
|
<!-- Dynamic Fields. -->
|
|
|
|
<!-- Name Field. Type: Text. (joomla) -->
|
|
|
|
<field
|
|
|
|
type="text"
|
|
|
|
name="name"
|
|
|
|
label="COM_COMPONENTBUILDER_LAYOUT_NAME_LABEL"
|
|
|
|
size="40"
|
|
|
|
maxlength="150"
|
|
|
|
description="COM_COMPONENTBUILDER_LAYOUT_NAME_DESCRIPTION"
|
|
|
|
class="text_area"
|
|
|
|
readonly="false"
|
|
|
|
disabled="false"
|
|
|
|
required="true"
|
|
|
|
filter="STRING"
|
|
|
|
message="COM_COMPONENTBUILDER_LAYOUT_NAME_MESSAGE"
|
|
|
|
hint="COM_COMPONENTBUILDER_LAYOUT_NAME_HINT"
|
|
|
|
/>
|
|
|
|
<!-- Description Field. Type: Text. (joomla) -->
|
|
|
|
<field
|
|
|
|
type="text"
|
|
|
|
name="description"
|
|
|
|
label="COM_COMPONENTBUILDER_LAYOUT_DESCRIPTION_LABEL"
|
|
|
|
size="80"
|
|
|
|
maxlength="150"
|
|
|
|
description="COM_COMPONENTBUILDER_LAYOUT_DESCRIPTION_DESCRIPTION"
|
|
|
|
class="text_area"
|
|
|
|
readonly="false"
|
|
|
|
disabled="false"
|
|
|
|
required="true"
|
|
|
|
filter="STRING"
|
|
|
|
message="COM_COMPONENTBUILDER_LAYOUT_DESCRIPTION_MESSAGE"
|
|
|
|
hint="COM_COMPONENTBUILDER_LAYOUT_DESCRIPTION_HINT"
|
|
|
|
/>
|
|
|
|
<!-- Dynamic_get Field. Type: Dynamicget. (custom) -->
|
|
|
|
<field
|
|
|
|
type="dynamicget"
|
|
|
|
name="dynamic_get"
|
|
|
|
label="COM_COMPONENTBUILDER_LAYOUT_DYNAMIC_GET_LABEL"
|
|
|
|
description="COM_COMPONENTBUILDER_LAYOUT_DYNAMIC_GET_DESCRIPTION"
|
|
|
|
multiple="false"
|
2018-09-24 14:37:51 +00:00
|
|
|
default=""
|
2018-03-18 04:28:54 +00:00
|
|
|
required="false"
|
|
|
|
button="true"
|
|
|
|
/>
|
|
|
|
<!-- Snippet Field. Type: Snippets. (custom) -->
|
|
|
|
<field
|
|
|
|
type="snippets"
|
|
|
|
name="snippet"
|
|
|
|
label="COM_COMPONENTBUILDER_LAYOUT_SNIPPET_LABEL"
|
|
|
|
description="COM_COMPONENTBUILDER_LAYOUT_SNIPPET_DESCRIPTION"
|
|
|
|
class="list_class"
|
|
|
|
multiple="false"
|
|
|
|
required="false"
|
|
|
|
button="true"
|
|
|
|
/>
|
2018-06-25 20:54:26 +00:00
|
|
|
<!-- Php_view Field. Type: Editor. (joomla) -->
|
2018-03-18 04:28:54 +00:00
|
|
|
<field
|
2018-06-25 20:54:26 +00:00
|
|
|
type="editor"
|
2018-03-18 04:28:54 +00:00
|
|
|
name="php_view"
|
|
|
|
label="COM_COMPONENTBUILDER_LAYOUT_PHP_VIEW_LABEL"
|
|
|
|
description="COM_COMPONENTBUILDER_LAYOUT_PHP_VIEW_DESCRIPTION"
|
2018-06-25 20:54:26 +00:00
|
|
|
width="100%"
|
|
|
|
height="450px"
|
|
|
|
cols="15"
|
|
|
|
rows="30"
|
|
|
|
buttons="no"
|
|
|
|
syntax="php"
|
|
|
|
editor="codemirror|none"
|
2018-03-18 04:28:54 +00:00
|
|
|
filter="raw"
|
2018-06-25 20:54:26 +00:00
|
|
|
validate="code"
|
2018-03-18 04:28:54 +00:00
|
|
|
/>
|
|
|
|
<!-- Add_php_view Field. Type: Radio. (joomla) -->
|
|
|
|
<field
|
|
|
|
type="radio"
|
|
|
|
name="add_php_view"
|
|
|
|
label="COM_COMPONENTBUILDER_LAYOUT_ADD_PHP_VIEW_LABEL"
|
|
|
|
class="btn-group btn-group-yesno"
|
|
|
|
default="0"
|
|
|
|
required="true">
|
|
|
|
<!-- Option Set. -->
|
|
|
|
<option value="1">
|
|
|
|
COM_COMPONENTBUILDER_LAYOUT_YES</option>
|
|
|
|
<option value="0">
|
|
|
|
COM_COMPONENTBUILDER_LAYOUT_NO</option>
|
|
|
|
</field>
|
|
|
|
<!-- Dynamic_values Field. Type: Note. A None Database Field. (joomla) -->
|
|
|
|
<field type="note" name="dynamic_values" label="COM_COMPONENTBUILDER_LAYOUT_DYNAMIC_VALUES_LABEL" description="COM_COMPONENTBUILDER_LAYOUT_DYNAMIC_VALUES_DESCRIPTION" heading="h4" class="dynamic_values" />
|
|
|
|
<!-- Not_required Field. Type: Hidden. (joomla) -->
|
|
|
|
<field
|
|
|
|
type="hidden"
|
|
|
|
name="not_required"
|
2020-02-27 21:05:28 +00:00
|
|
|
default="一_一"
|
2018-03-18 04:28:54 +00:00
|
|
|
/>
|
2018-06-25 20:54:26 +00:00
|
|
|
<!-- Layout Field. Type: Editor. (joomla) -->
|
2018-03-18 04:28:54 +00:00
|
|
|
<field
|
2018-06-25 20:54:26 +00:00
|
|
|
type="editor"
|
2018-03-18 04:28:54 +00:00
|
|
|
name="layout"
|
|
|
|
label="COM_COMPONENTBUILDER_LAYOUT_LAYOUT_LABEL"
|
2018-06-25 20:54:26 +00:00
|
|
|
description="COM_COMPONENTBUILDER_LAYOUT_LAYOUT_DESCRIPTION"
|
|
|
|
width="100%"
|
|
|
|
height="450px"
|
2018-03-18 04:28:54 +00:00
|
|
|
cols="15"
|
2018-06-25 20:54:26 +00:00
|
|
|
rows="30"
|
|
|
|
buttons="no"
|
|
|
|
syntax="html"
|
|
|
|
editor="codemirror|none"
|
2018-03-18 04:28:54 +00:00
|
|
|
filter="raw"
|
2018-06-25 20:54:26 +00:00
|
|
|
validate="code"
|
2018-03-18 04:28:54 +00:00
|
|
|
/>
|
|
|
|
<!-- Note_snippet_usage Field. Type: Note. A None Database Field. (joomla) -->
|
|
|
|
<field type="note" name="note_snippet_usage" label="COM_COMPONENTBUILDER_LAYOUT_NOTE_SNIPPET_USAGE_LABEL" heading="h4" class="snippet-usage note_snippet_usage" />
|
|
|
|
<!-- Note_uikit_snippet Field. Type: Note. A None Database Field. (joomla) -->
|
|
|
|
<field type="note" name="note_uikit_snippet" label="COM_COMPONENTBUILDER_LAYOUT_NOTE_UIKIT_SNIPPET_LABEL" heading="h4" class="snippet-code note_uikit_snippet" />
|
2021-02-19 00:35:54 +00:00
|
|
|
<!-- Note_add_php_language_string Field. Type: Note. A None Database Field. (joomla) -->
|
|
|
|
<field type="note" name="note_add_php_language_string" label="COM_COMPONENTBUILDER_LAYOUT_NOTE_ADD_PHP_LANGUAGE_STRING_LABEL" description="COM_COMPONENTBUILDER_LAYOUT_NOTE_ADD_PHP_LANGUAGE_STRING_DESCRIPTION" heading="h4" class="note_add_php_language_string" />
|
2018-03-18 04:28:54 +00:00
|
|
|
<!-- Libraries Field. Type: Libraries. (custom) -->
|
|
|
|
<field
|
|
|
|
type="libraries"
|
|
|
|
name="libraries"
|
|
|
|
label="COM_COMPONENTBUILDER_LAYOUT_LIBRARIES_LABEL"
|
|
|
|
description="COM_COMPONENTBUILDER_LAYOUT_LIBRARIES_DESCRIPTION"
|
|
|
|
class="list_class"
|
|
|
|
multiple="true"
|
|
|
|
default="0"
|
|
|
|
required="false"
|
|
|
|
button="true"
|
|
|
|
/>
|
|
|
|
<!-- Note_libraries_selection Field. Type: Note. A None Database Field. (joomla) -->
|
|
|
|
<field type="note" name="note_libraries_selection" label="COM_COMPONENTBUILDER_LAYOUT_NOTE_LIBRARIES_SELECTION_LABEL" description="COM_COMPONENTBUILDER_LAYOUT_NOTE_LIBRARIES_SELECTION_DESCRIPTION" heading="h4" class="alert alert-info note_libraries_selection" />
|
2018-08-23 01:37:42 +00:00
|
|
|
<!-- Alias Field. Type: Text. (joomla) -->
|
|
|
|
<field
|
|
|
|
type="text"
|
|
|
|
name="alias"
|
|
|
|
label="COM_COMPONENTBUILDER_LAYOUT_ALIAS_LABEL"
|
|
|
|
size="40"
|
|
|
|
maxlength="50"
|
2018-09-24 14:37:51 +00:00
|
|
|
default=""
|
2018-08-23 01:37:42 +00:00
|
|
|
description="COM_COMPONENTBUILDER_LAYOUT_ALIAS_DESCRIPTION"
|
|
|
|
class="text_area"
|
|
|
|
filter="CMD"
|
|
|
|
message="COM_COMPONENTBUILDER_LAYOUT_ALIAS_MESSAGE"
|
|
|
|
hint="COM_COMPONENTBUILDER_LAYOUT_ALIAS_HINT"
|
|
|
|
/>
|
2021-03-05 03:08:47 +00:00
|
|
|
</fieldset>
|
|
|
|
|
2016-01-30 20:28:43 +00:00
|
|
|
<!-- 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 layout"
|
|
|
|
translate_label="false"
|
|
|
|
filter="rules"
|
|
|
|
validate="rules"
|
|
|
|
class="inputbox"
|
|
|
|
component="com_componentbuilder"
|
|
|
|
section="layout"
|
|
|
|
/>
|
2021-03-05 03:08:47 +00:00
|
|
|
</fieldset>
|
2016-01-30 20:28:43 +00:00
|
|
|
</form>
|