288 lines
7.6 KiB
XML
288 lines
7.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<form
|
|
addrulepath="/administrator/components/com_demo/models/rules"
|
|
addfieldpath="/administrator/components/com_demo/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"
|
|
/>
|
|
<!-- Date Created Field. Type: Calendar (joomla) -->
|
|
<field
|
|
name="created"
|
|
type="calendar"
|
|
label="COM_DEMO_LOOK_CREATED_DATE_LABEL"
|
|
description="COM_DEMO_LOOK_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_DEMO_LOOK_CREATED_BY_LABEL"
|
|
description="COM_DEMO_LOOK_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_DEMO_LOOK_MODIFIED_DATE_LABEL" description="COM_DEMO_LOOK_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_DEMO_LOOK_MODIFIED_BY_LABEL"
|
|
description="COM_DEMO_LOOK_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_DEMO_LOOK_ORDERING_LABEL"
|
|
description=""
|
|
default="0"
|
|
size="6"
|
|
required="false"
|
|
/>
|
|
<!-- Version Field. Type: Text (joomla) -->
|
|
<field
|
|
name="version"
|
|
type="text"
|
|
class="readonly"
|
|
label="COM_DEMO_LOOK_VERSION_LABEL"
|
|
description="COM_DEMO_LOOK_VERSION_DESC"
|
|
size="6"
|
|
readonly="true"
|
|
filter="unset"
|
|
/>
|
|
<!-- Metakey Field. Type: Textarea (joomla) -->
|
|
<field
|
|
name="metakey"
|
|
type="textarea"
|
|
label="JFIELD_META_KEYWORDS_LABEL"
|
|
description="JFIELD_META_KEYWORDS_DESC"
|
|
rows="3"
|
|
cols="30"
|
|
/>
|
|
<!-- Metadesc Field. Type: Textarea (joomla) -->
|
|
<field
|
|
name="metadesc"
|
|
type="textarea"
|
|
label="JFIELD_META_DESCRIPTION_LABEL"
|
|
description="JFIELD_META_DESCRIPTION_DESC"
|
|
rows="3"
|
|
cols="30"
|
|
/>
|
|
<!-- 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="demo look"
|
|
/>
|
|
<!-- Dynamic Fields. -->
|
|
<!-- Name Field. Type: Text. (joomla) -->
|
|
<field
|
|
type="text"
|
|
name="name"
|
|
label="COM_DEMO_LOOK_NAME_LABEL"
|
|
size="40"
|
|
maxlength="150"
|
|
description="COM_DEMO_LOOK_NAME_DESCRIPTION"
|
|
class="text_area"
|
|
required="true"
|
|
filter="STRING"
|
|
message="COM_DEMO_LOOK_NAME_MESSAGE"
|
|
hint="COM_DEMO_LOOK_NAME_HINT"
|
|
/>
|
|
<!-- Description Field. Type: Textarea. (joomla) -->
|
|
<field
|
|
type="textarea"
|
|
name="description"
|
|
label="COM_DEMO_LOOK_DESCRIPTION_LABEL"
|
|
rows="11"
|
|
cols="10"
|
|
description="COM_DEMO_LOOK_DESCRIPTION_DESCRIPTION"
|
|
class="text_area span12"
|
|
filter="HTML"
|
|
hint="COM_DEMO_LOOK_DESCRIPTION_HINT"
|
|
/>
|
|
<!-- Website Field. Type: Url. (joomla) -->
|
|
<field
|
|
type="url"
|
|
name="website"
|
|
label="COM_DEMO_LOOK_WEBSITE_LABEL"
|
|
size="60"
|
|
maxlength="150"
|
|
description="COM_DEMO_LOOK_WEBSITE_DESCRIPTION"
|
|
class="text_area"
|
|
filter="url"
|
|
validated="url"
|
|
scheme="http,https"
|
|
message="COM_DEMO_LOOK_WEBSITE_MESSAGE"
|
|
hint="COM_DEMO_LOOK_WEBSITE_HINT"
|
|
/>
|
|
<!-- Image Field. Type: Media. (joomla) -->
|
|
<field
|
|
type="media"
|
|
name="image"
|
|
label="COM_DEMO_LOOK_IMAGE_LABEL"
|
|
directory=""
|
|
/>
|
|
<!-- Dateofbirth Field. Type: Calendar. (joomla) -->
|
|
<field
|
|
type="calendar"
|
|
name="dateofbirth"
|
|
label="COM_DEMO_LOOK_DATEOFBIRTH_LABEL"
|
|
default="1970-01-01"
|
|
description="COM_DEMO_LOOK_DATEOFBIRTH_DESCRIPTION"
|
|
format="%Y-%m-%d"
|
|
filter="STRING"
|
|
required="true"
|
|
todaybutton="false"
|
|
minyear="-120"
|
|
maxyear="-1"
|
|
/>
|
|
<!-- Mobile_phone Field. Type: Text. (joomla) -->
|
|
<field
|
|
type="text"
|
|
name="mobile_phone"
|
|
label="COM_DEMO_LOOK_MOBILE_PHONE_LABEL"
|
|
size="10"
|
|
maxlength="50"
|
|
default=""
|
|
description="COM_DEMO_LOOK_MOBILE_PHONE_DESCRIPTION"
|
|
class="text_area"
|
|
required="true"
|
|
filter="STRING"
|
|
validated="tel"
|
|
message="COM_DEMO_LOOK_MOBILE_PHONE_MESSAGE"
|
|
hint="COM_DEMO_LOOK_MOBILE_PHONE_HINT"
|
|
/>
|
|
<!-- Email Field. Type: Text. (joomla) -->
|
|
<field
|
|
type="text"
|
|
name="email"
|
|
label="COM_DEMO_LOOK_EMAIL_LABEL"
|
|
size="10"
|
|
maxlength="50"
|
|
description="COM_DEMO_LOOK_EMAIL_DESCRIPTION"
|
|
class="text_area"
|
|
required="true"
|
|
filter="STRING"
|
|
validate="email"
|
|
message="COM_DEMO_LOOK_EMAIL_MESSAGE"
|
|
hint="COM_DEMO_LOOK_EMAIL_HINT"
|
|
/>
|
|
<!-- Add Field. Type: Radio. (joomla) -->
|
|
<field
|
|
type="radio"
|
|
name="add"
|
|
label="COM_DEMO_LOOK_ADD_LABEL"
|
|
class="btn-group btn-group-yesno"
|
|
default="0"
|
|
required="true">
|
|
<!-- Option Set. -->
|
|
<option value="1">
|
|
COM_DEMO_LOOK_YES</option>
|
|
<option value="0">
|
|
COM_DEMO_LOOK_NO</option>
|
|
</field>
|
|
<!-- Not_required Field. Type: Hidden. (joomla) -->
|
|
<field
|
|
type="hidden"
|
|
name="not_required"
|
|
default="一_一"
|
|
/>
|
|
<!-- Alias Field. Type: Text. (joomla) -->
|
|
<field
|
|
type="text"
|
|
name="alias"
|
|
label="COM_DEMO_LOOK_ALIAS_LABEL"
|
|
description="JFIELD_ALIAS_DESC"
|
|
filter="STRING"
|
|
hint="COM_DEMO_LOOK_ALIAS_HINT"
|
|
/>
|
|
</fieldset>
|
|
|
|
<!-- Metadata Fields. -->
|
|
<fields name="metadata" label="JGLOBAL_FIELDSET_METADATA_OPTIONS">
|
|
<fieldset name="vdmmetadata"
|
|
label="JGLOBAL_FIELDSET_METADATA_OPTIONS">
|
|
<!-- Robots Field. Type: List (joomla) -->
|
|
<field name="robots"
|
|
type="list"
|
|
label="JFIELD_METADATA_ROBOTS_LABEL"
|
|
description="JFIELD_METADATA_ROBOTS_DESC" >
|
|
<option value="">JGLOBAL_USE_GLOBAL</option>
|
|
<option value="index, follow">JGLOBAL_INDEX_FOLLOW</option>
|
|
<option value="noindex, follow">JGLOBAL_NOINDEX_FOLLOW</option>
|
|
<option value="index, nofollow">JGLOBAL_INDEX_NOFOLLOW</option>
|
|
<option value="noindex, nofollow">JGLOBAL_NOINDEX_NOFOLLOW</option>
|
|
</field>
|
|
<!-- Author Field. Type: Text (joomla) -->
|
|
<field name="author"
|
|
type="text"
|
|
label="JAUTHOR" description="JFIELD_METADATA_AUTHOR_DESC"
|
|
size="20"
|
|
/>
|
|
<!-- Rights Field. Type: Textarea (joomla) -->
|
|
<field name="rights" type="textarea" label="JFIELD_META_RIGHTS_LABEL"
|
|
description="JFIELD_META_RIGHTS_DESC" required="false" filter="string"
|
|
cols="30" rows="2"
|
|
/>
|
|
</fieldset>
|
|
</fields>
|
|
|
|
<!-- 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 look"
|
|
translate_label="false"
|
|
filter="rules"
|
|
validate="rules"
|
|
class="inputbox"
|
|
component="com_demo"
|
|
section="look"
|
|
/>
|
|
</fieldset>
|
|
</form> |