Robot 88104fd483
Stable release of v3.0.0
Move all JText to use the namespaced class Text directly. Move all JHtml to use the namespaced class Html directly. Move all JFactory to use the namespaced class Factory directly. Move all JRoute to use the namespaced class Route directly. Move all JFormHelper to use the namespaced class FormHelper directly. Move all JLayout to use the namespaced class FileLayout directly. Move all JLanguageMultilang to use the namespaced class Multilanguage directly. Move all JComponentHelper to use the namespaced class ComponentHelper directly. Move all JCategoryNode to use the namespaced class CategoryNode directly. Move all JComponentHelper to use the namespaced class ComponentHelper directly. Move all JToolbar to use the namespaced class Toolbar directly. Move all JToolbarHelper to use the namespaced class ToolbarHelper directly. Convert all addStyleSheet to make use of Html class instead. Convert all addScript to make use of Html class instead.
2024-01-22 10:48:28 +02:00

184 lines
4.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<form
addrulepath="/administrator/components/com_getbible/models/rules"
addfieldpath="/administrator/components/com_getbible/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_GETBIBLE_BOOK_CREATED_DATE_LABEL"
description="COM_GETBIBLE_BOOK_CREATED_DATE_DESC"
size="22"
readonly="true"
disabled="true"
format="%Y-%m-%d %H:%M:%S"
filter="user_utc"
/>
<!-- User Created Field. Type: User (joomla) -->
<field
name="created_by"
type="user"
label="COM_GETBIBLE_BOOK_CREATED_BY_LABEL"
readonly="true"
disabled="true"
description="COM_GETBIBLE_BOOK_CREATED_BY_DESC"
/>
<!-- Published Field. Type: List (joomla) -->
<field name="published" type="list" label="JSTATUS"
description="JFIELD_PUBLISHED_DESC" class="chzn-color-state"
readonly="true"
disabled="true"
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_GETBIBLE_BOOK_MODIFIED_DATE_LABEL" description="COM_GETBIBLE_BOOK_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_GETBIBLE_BOOK_MODIFIED_BY_LABEL"
description="COM_GETBIBLE_BOOK_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"
readonly="true"
disabled="true"
required="false"
/>
<!-- Ordering Field. Type: Numbers (joomla) -->
<field
name="ordering"
type="number"
class="inputbox validate-ordering"
label="COM_GETBIBLE_BOOK_ORDERING_LABEL"
description=""
default="0"
size="6"
readonly="true"
disabled="true"
required="false"
/>
<!-- Version Field. Type: Text (joomla) -->
<field
name="version"
type="text"
class="readonly"
label="COM_GETBIBLE_BOOK_VERSION_LABEL"
description="COM_GETBIBLE_BOOK_VERSION_DESC"
size="6"
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="getbible book"
/>
<!-- Dynamic Fields. -->
<!-- Name Field. Type: Text. (joomla) -->
<field
type="text"
name="name"
label="COM_GETBIBLE_BOOK_NAME_LABEL"
size="40"
maxlength="150"
description="COM_GETBIBLE_BOOK_NAME_DESCRIPTION"
class="text_area"
readonly="true"
disabled="true"
required="true"
filter="STRING"
message="COM_GETBIBLE_BOOK_NAME_MESSAGE"
hint="COM_GETBIBLE_BOOK_NAME_HINT"
/>
<!-- Abbreviation Field. Type: Translations. (custom) -->
<field
type="translations"
name="abbreviation"
label="COM_GETBIBLE_BOOK_ABBREVIATION_LABEL"
description="COM_GETBIBLE_BOOK_ABBREVIATION_DESCRIPTION"
class="list_class"
multiple="false"
default="0"
required="true"
readonly="true"
disabled="true"
/>
<!-- Nr Field. Type: Number. (joomla) -->
<field
type="number"
name="nr"
label="COM_GETBIBLE_BOOK_NR_LABEL"
description="COM_GETBIBLE_BOOK_NR_DESCRIPTION"
class="text_area"
required="true"
min="1"
max="78"
step="1"
/>
<!-- Sha Field. Type: Text. (joomla) -->
<field
type="text"
name="sha"
label="COM_GETBIBLE_BOOK_SHA_LABEL"
size="10"
maxlength="50"
description="COM_GETBIBLE_BOOK_SHA_DESCRIPTION"
class="text_area"
readonly="true"
disabled="true"
filter="ALNUM"
message="COM_GETBIBLE_BOOK_SHA_MESSAGE"
/>
</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 book"
translate_label="false"
filter="rules"
validate="rules"
class="inputbox"
component="com_getbible"
section="book"
/>
</fieldset>
</form>