Members-Manager/admin/models/forms/member.xml

304 lines
8.7 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<form
addrulepath="/administrator/components/com_membersmanager/models/rules"
addfieldpath="/administrator/components/com_membersmanager/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_MEMBERSMANAGER_MEMBER_CREATED_DATE_LABEL"
description="COM_MEMBERSMANAGER_MEMBER_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_MEMBERSMANAGER_MEMBER_CREATED_BY_LABEL"
description="COM_MEMBERSMANAGER_MEMBER_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_MEMBERSMANAGER_MEMBER_MODIFIED_DATE_LABEL" description="COM_MEMBERSMANAGER_MEMBER_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_MEMBERSMANAGER_MEMBER_MODIFIED_BY_LABEL"
description="COM_MEMBERSMANAGER_MEMBER_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_MEMBERSMANAGER_MEMBER_ORDERING_LABEL"
description=""
default="0"
size="6"
required="false"
/>
<!-- Version Field. Type: Text (joomla) -->
<field
name="version"
type="text"
class="readonly"
label="COM_MEMBERSMANAGER_MEMBER_VERSION_LABEL"
description="COM_MEMBERSMANAGER_MEMBER_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="membersmanager member"
/>
<!-- Dynamic Fields. -->
<!-- Name Field. Type: Text. (joomla) -->
<field
type="text"
name="name"
label="COM_MEMBERSMANAGER_MEMBER_NAME_LABEL"
size="40"
maxlength="150"
description="COM_MEMBERSMANAGER_MEMBER_NAME_DESCRIPTION"
class="text_area"
required="true"
filter="STRING"
message="COM_MEMBERSMANAGER_MEMBER_NAME_MESSAGE"
hint="COM_MEMBERSMANAGER_MEMBER_NAME_HINT"
/>
<!-- Email Field. Type: Text. (joomla) -->
<field
type="text"
name="email"
label="COM_MEMBERSMANAGER_MEMBER_EMAIL_LABEL"
size="10"
maxlength="50"
description="COM_MEMBERSMANAGER_MEMBER_EMAIL_DESCRIPTION"
class="text_area"
required="false"
filter="STRING"
message="COM_MEMBERSMANAGER_MEMBER_EMAIL_MESSAGE"
hint="COM_MEMBERSMANAGER_MEMBER_EMAIL_HINT"
/>
<!-- Account Field. Type: List. (joomla) -->
<field
type="list"
name="account"
label="COM_MEMBERSMANAGER_MEMBER_ACCOUNT_LABEL"
description="COM_MEMBERSMANAGER_MEMBER_ACCOUNT_DESCRIPTION"
class="list_class"
multiple="false"
required="true"
validate="number"
default="1">
<!-- Option Set. -->
<option value="1">
COM_MEMBERSMANAGER_MEMBER_MAIN_LOGIN</option>
<option value="2">
COM_MEMBERSMANAGER_MEMBER_MAIN</option>
<option value="3">
COM_MEMBERSMANAGER_MEMBER_SUB</option>
<option value="4">
COM_MEMBERSMANAGER_MEMBER_SUB_LOGIN</option>
</field>
<!-- User Field. Type: Memberuser. (custom) -->
<field
type="memberuser"
name="user"
label="COM_MEMBERSMANAGER_MEMBER_USER_LABEL"
class="list_class"
multiple="false"
validate="number"
button="false"
/>
<!-- Token Field. Type: Text. (joomla) -->
<field
type="text"
name="token"
label="COM_MEMBERSMANAGER_MEMBER_TOKEN_LABEL"
size="10"
maxlength="50"
default=""
description="COM_MEMBERSMANAGER_MEMBER_TOKEN_DESCRIPTION"
class="text_area"
readonly="false"
disabled="false"
required="false"
filter="STRING"
validate="uniquetoken"
message="COM_MEMBERSMANAGER_MEMBER_TOKEN_MESSAGE"
hint="COM_MEMBERSMANAGER_MEMBER_TOKEN_HINT"
autocomplete="off"
/>
<!-- Profile_image_uploader Field. Type: Note. A None Database Field. (joomla) -->
<field type="note" name="profile_image_uploader" label="COM_MEMBERSMANAGER_MEMBER_PROFILE_IMAGE_UPLOADER_LABEL" description="COM_MEMBERSMANAGER_MEMBER_PROFILE_IMAGE_UPLOADER_DESCRIPTION" class="profile_image_uploader" />
<!-- Profile_image Field. Type: Hidden. (joomla) -->
<field
type="hidden"
name="profile_image"
default="1"
/>
<!-- Not_required Field. Type: Hidden. (joomla) -->
<field
type="hidden"
name="not_required"
default="一_一"
/>
<!-- Main_member Field. Type: Mainmembers. (custom) -->
<field
type="mainmembers"
name="main_member"
label="COM_MEMBERSMANAGER_MEMBER_MAIN_MEMBER_LABEL"
description="COM_MEMBERSMANAGER_MEMBER_MAIN_MEMBER_DESCRIPTION"
class="list_class"
multiple="false"
required="true"
button="true"
/>
<!-- Password_check Field. Type: Password. (joomla) -->
<field
type="password"
name="password_check"
label="COM_MEMBERSMANAGER_MEMBER_PASSWORD_CHECK_LABEL"
size="50"
description="COM_MEMBERSMANAGER_MEMBER_PASSWORD_CHECK_DESCRIPTION"
message="Error! The passwords you entered do not match. Please enter your desired password in the password field and confirm your entry by entering it in the confirm password field."
class="text_area"
validate="equals"
field="password"
filter="raw"
autocomplete="off"
/>
<!-- Password Field. Type: Password. (joomla) -->
<field
type="password"
name="password"
label="COM_MEMBERSMANAGER_MEMBER_PASSWORD_LABEL"
size="50"
description="COM_MEMBERSMANAGER_MEMBER_PASSWORD_DESCRIPTION"
message="Error! Please add password here."
class="text_area"
validate="password"
filter="raw"
autocomplete="off"
/>
<!-- Useremail Field. Type: Email. (joomla) -->
<field
type="email"
name="useremail"
label="COM_MEMBERSMANAGER_MEMBER_USEREMAIL_LABEL"
size="50"
maxlength="150"
description="COM_MEMBERSMANAGER_MEMBER_USEREMAIL_DESCRIPTION"
required="true"
filter="STRING"
validate="memberuseremail"
unique="true"
message="COM_MEMBERSMANAGER_MEMBER_USEREMAIL_MESSAGE"
hint="COM_MEMBERSMANAGER_MEMBER_USEREMAIL_HINT"
autocomplete="off"
/>
<!-- Username Field. Type: Text. (joomla) -->
<field
type="text"
name="username"
label="COM_MEMBERSMANAGER_MEMBER_USERNAME_LABEL"
size="50"
maxlength="150"
description="COM_MEMBERSMANAGER_MEMBER_USERNAME_DESCRIPTION"
class="text_area"
required="true"
filter="WORD"
validate="memberloginname"
message="COM_MEMBERSMANAGER_MEMBER_USERNAME_MESSAGE"
autocomplete="off"
/>
<!-- Surname Field. Type: Text. (joomla) -->
<field
type="text"
name="surname"
label="COM_MEMBERSMANAGER_MEMBER_SURNAME_LABEL"
size="30"
maxlength="150"
description="COM_MEMBERSMANAGER_MEMBER_SURNAME_DESCRIPTION"
class="text_area"
filter="STRING"
message="COM_MEMBERSMANAGER_MEMBER_SURNAME_MESSAGE"
hint="COM_MEMBERSMANAGER_MEMBER_SURNAME_HINT"
/>
<!-- Type Field. Type: Typesonmember. (custom) -->
<field
type="typesonmember"
name="type"
label="COM_MEMBERSMANAGER_MEMBER_TYPE_LABEL"
description="COM_MEMBERSMANAGER_MEMBER_TYPE_DESCRIPTION"
class="list_class"
multiple="true"
required="false"
button="true"
/>
</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 member"
translate_label="false"
filter="rules"
validate="rules"
class="inputbox"
component="com_membersmanager"
section="member"
/>
</fieldset>
</form>