You've already forked joomla_test
first commit
This commit is contained in:
31
components/com_users/models/forms/frontend.xml
Normal file
31
components/com_users/models/forms/frontend.xml
Normal file
@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<form>
|
||||
<fields name="params">
|
||||
<!-- Basic user account settings. -->
|
||||
<fieldset name="params" label="COM_USERS_SETTINGS_FIELDSET_LABEL">
|
||||
|
||||
<field name="editor" type="plugins" folder="editors"
|
||||
description="COM_USERS_USER_FIELD_EDITOR_DESC"
|
||||
label="COM_USERS_USER_FIELD_EDITOR_LABEL"
|
||||
>
|
||||
<option value="">JOPTION_USE_DEFAULT</option>
|
||||
</field>
|
||||
|
||||
<field name="timezone" type="timezone"
|
||||
label="COM_USERS_USER_FIELD_TIMEZONE_LABEL"
|
||||
description="COM_USERS_USER_FIELD_TIMEZONE_DESC"
|
||||
>
|
||||
<option value="">JOPTION_USE_DEFAULT</option>
|
||||
</field>
|
||||
|
||||
<field name="language" type="language"
|
||||
client="site"
|
||||
description="COM_USERS_USER_FIELD_FRONTEND_LANGUAGE_DESC"
|
||||
label="COM_USERS_USER_FIELD_FRONTEND_LANGUAGE_LABEL"
|
||||
filter="cmd"
|
||||
>
|
||||
<option value="">JOPTION_USE_DEFAULT</option>
|
||||
</field>
|
||||
</fieldset>
|
||||
</fields>
|
||||
</form>
|
33
components/com_users/models/forms/frontend_admin.xml
Normal file
33
components/com_users/models/forms/frontend_admin.xml
Normal file
@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<form>
|
||||
<fields name="params">
|
||||
<!-- Backend user account settings. -->
|
||||
<fieldset name="params" label="COM_USERS_SETTINGS_FIELDSET_LABEL">
|
||||
|
||||
<field name="admin_style" type="templatestyle"
|
||||
client="administrator"
|
||||
description="COM_USERS_USER_FIELD_BACKEND_TEMPLATE_DESC"
|
||||
label="COM_USERS_USER_FIELD_BACKEND_TEMPLATE_LABEL"
|
||||
>
|
||||
<option value="">JOPTION_USE_DEFAULT</option>
|
||||
</field>
|
||||
|
||||
<field name="admin_language" type="language"
|
||||
client="administrator"
|
||||
description="COM_USERS_USER_FIELD_BACKEND_LANGUAGE_DESC"
|
||||
label="COM_USERS_USER_FIELD_BACKEND_LANGUAGE_LABEL"
|
||||
filter="cmd"
|
||||
>
|
||||
<option value="">JOPTION_USE_DEFAULT</option>
|
||||
</field>
|
||||
|
||||
<field name="helpsite" type="helpsite"
|
||||
label="COM_USERS_USER_FIELD_HELPSITE_LABEL"
|
||||
description="COM_USERS_USER_FIELD_HELPSITE_DESC"
|
||||
>
|
||||
<option value="">JOPTION_USE_DEFAULT</option>
|
||||
</field>
|
||||
|
||||
</fieldset>
|
||||
</fields>
|
||||
</form>
|
1
components/com_users/models/forms/index.html
Normal file
1
components/com_users/models/forms/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
26
components/com_users/models/forms/login.xml
Normal file
26
components/com_users/models/forms/login.xml
Normal file
@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<form>
|
||||
<fieldset name="credentials"
|
||||
label="COM_USERS_LOGIN_DEFAULT_LABEL" >
|
||||
|
||||
<field name="username" type="text"
|
||||
class="validate-username"
|
||||
filter="username"
|
||||
label="COM_USERS_LOGIN_USERNAME_LABEL"
|
||||
size="25"
|
||||
required="true"
|
||||
validate="username"
|
||||
/>
|
||||
|
||||
<field name="password" type="password"
|
||||
class="validate-password"
|
||||
required="true"
|
||||
filter="raw"
|
||||
label="JGLOBAL_PASSWORD"
|
||||
size="25"
|
||||
/>
|
||||
</fieldset>
|
||||
<fieldset>
|
||||
<field name="return" type="hidden" />
|
||||
</fieldset>
|
||||
</form>
|
73
components/com_users/models/forms/profile.xml
Normal file
73
components/com_users/models/forms/profile.xml
Normal file
@ -0,0 +1,73 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<form>
|
||||
<fieldset name="core"
|
||||
label="COM_USERS_PROFILE_DEFAULT_LABEL">
|
||||
|
||||
<field name="id" type="hidden"
|
||||
filter="integer"
|
||||
/>
|
||||
|
||||
<field name="name" type="text"
|
||||
description="COM_USERS_PROFILE_NAME_DESC"
|
||||
filter="string"
|
||||
label="COM_USERS_PROFILE_NAME_LABEL"
|
||||
required="true"
|
||||
size="30"
|
||||
/>
|
||||
|
||||
<field name="username" type="text"
|
||||
class="validate-username"
|
||||
description="COM_USERS_DESIRED_USERNAME"
|
||||
filter="username"
|
||||
label="COM_USERS_PROFILE_USERNAME_LABEL"
|
||||
message="COM_USERS_PROFILE_USERNAME_MESSAGE"
|
||||
required="true"
|
||||
size="30"
|
||||
validate="username"
|
||||
/>
|
||||
|
||||
<field name="password2" type="password"
|
||||
autocomplete="off"
|
||||
class="validate-password"
|
||||
description="COM_USERS_DESIRED_PASSWORD"
|
||||
field="password1"
|
||||
filter="raw"
|
||||
label="COM_USERS_PROFILE_PASSWORD1_LABEL"
|
||||
message="COM_USERS_PROFILE_PASSWORD1_MESSAGE"
|
||||
size="30"
|
||||
validate="equals"
|
||||
/>
|
||||
|
||||
<field name="password1" type="password"
|
||||
autocomplete="off"
|
||||
class="validate-password"
|
||||
description="COM_USERS_PROFILE_PASSWORD2_DESC"
|
||||
filter="raw"
|
||||
label="COM_USERS_PROFILE_PASSWORD2_LABEL"
|
||||
size="30"
|
||||
validate="password"
|
||||
/>
|
||||
|
||||
<field name="email1" type="email"
|
||||
description="COM_USERS_PROFILE_EMAIL1_DESC"
|
||||
filter="string"
|
||||
label="COM_USERS_PROFILE_EMAIL1_LABEL"
|
||||
message="COM_USERS_PROFILE_EMAIL1_MESSAGE"
|
||||
required="true"
|
||||
size="30"
|
||||
unique="true"
|
||||
validate="email"
|
||||
/>
|
||||
|
||||
<field name="email2" type="email"
|
||||
description="COM_USERS_PROFILE_EMAIL2_DESC"
|
||||
field="email1"
|
||||
filter="string"
|
||||
label="COM_USERS_PROFILE_EMAIL2_LABEL"
|
||||
message="COM_USERS_PROFILE_EMAIL2_MESSAGE"
|
||||
required="true"
|
||||
size="30"
|
||||
validate="equals"
|
||||
/>
|
||||
</fieldset>
|
||||
</form>
|
85
components/com_users/models/forms/registration.xml
Normal file
85
components/com_users/models/forms/registration.xml
Normal file
@ -0,0 +1,85 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<form>
|
||||
<fieldset name="default"
|
||||
label="COM_USERS_REGISTRATION_DEFAULT_LABEL"
|
||||
>
|
||||
|
||||
<field name="spacer" type="spacer" class="text"
|
||||
label="COM_USERS_REGISTER_REQUIRED"
|
||||
/>
|
||||
|
||||
<field name="name" type="text"
|
||||
description="COM_USERS_REGISTER_NAME_DESC"
|
||||
filter="string"
|
||||
label="COM_USERS_REGISTER_NAME_LABEL"
|
||||
required="true"
|
||||
size="30"
|
||||
/>
|
||||
|
||||
<field name="username" type="text"
|
||||
class="validate-username"
|
||||
description="COM_USERS_DESIRED_USERNAME"
|
||||
filter="username"
|
||||
label="COM_USERS_REGISTER_USERNAME_LABEL"
|
||||
message="COM_USERS_REGISTER_USERNAME_MESSAGE"
|
||||
required="true"
|
||||
size="30"
|
||||
validate="username"
|
||||
/>
|
||||
|
||||
<field name="password2" type="password"
|
||||
autocomplete="off"
|
||||
class="validate-password"
|
||||
description="COM_USERS_DESIRED_PASSWORD"
|
||||
field="password1"
|
||||
filter="raw"
|
||||
label="COM_USERS_PROFILE_PASSWORD1_LABEL"
|
||||
message="COM_USERS_PROFILE_PASSWORD1_MESSAGE"
|
||||
size="30"
|
||||
validate="equals"
|
||||
required="true"
|
||||
/>
|
||||
|
||||
<field name="password1" type="password"
|
||||
autocomplete="off"
|
||||
class="validate-password"
|
||||
description="COM_USERS_PROFILE_PASSWORD2_DESC"
|
||||
filter="raw"
|
||||
label="COM_USERS_PROFILE_PASSWORD2_LABEL"
|
||||
size="30"
|
||||
validate="password"
|
||||
required="true"
|
||||
/>
|
||||
|
||||
<field name="email1" type="email"
|
||||
description="COM_USERS_REGISTER_EMAIL1_DESC"
|
||||
field="id"
|
||||
filter="string"
|
||||
label="COM_USERS_REGISTER_EMAIL1_LABEL"
|
||||
message="COM_USERS_REGISTER_EMAIL1_MESSAGE"
|
||||
required="true"
|
||||
size="30"
|
||||
unique="true"
|
||||
validate="email"
|
||||
/>
|
||||
|
||||
<field name="email2" type="email"
|
||||
description="COM_USERS_REGISTER_EMAIL2_DESC"
|
||||
field="email1"
|
||||
filter="string"
|
||||
label="COM_USERS_REGISTER_EMAIL2_LABEL"
|
||||
message="COM_USERS_REGISTER_EMAIL2_MESSAGE"
|
||||
required="true"
|
||||
size="30"
|
||||
validate="equals"
|
||||
/>
|
||||
|
||||
<field
|
||||
name="captcha"
|
||||
type="captcha"
|
||||
label="COM_USERS_CAPTCHA_LABEL"
|
||||
description="COM_USERS_CAPTCHA_DESC"
|
||||
validate="captcha"
|
||||
/>
|
||||
</fieldset>
|
||||
</form>
|
19
components/com_users/models/forms/remind.xml
Normal file
19
components/com_users/models/forms/remind.xml
Normal file
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<form>
|
||||
<fieldset name="default" label="COM_USERS_REMIND_DEFAULT_LABEL">
|
||||
<field name="email" type="email"
|
||||
description="COM_USERS_FIELD_REMIND_EMAIL_DESC"
|
||||
label="COM_USERS_FIELD_REMIND_EMAIL_LABEL"
|
||||
required="true"
|
||||
size="30"
|
||||
validate="email"
|
||||
/>
|
||||
<field
|
||||
name="captcha"
|
||||
type="captcha"
|
||||
label="COM_USERS_CAPTCHA_LABEL"
|
||||
description="COM_USERS_CAPTCHA_DESC"
|
||||
validate="captcha"
|
||||
/>
|
||||
</fieldset>
|
||||
</form>
|
27
components/com_users/models/forms/reset_complete.xml
Normal file
27
components/com_users/models/forms/reset_complete.xml
Normal file
@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<form>
|
||||
<fieldset name="default" label="COM_USERS_RESET_COMPLETE_LABEL">
|
||||
|
||||
<field name="password1" type="password"
|
||||
autocomplete="off"
|
||||
class="validate-password"
|
||||
description="COM_USERS_FIELD_RESET_PASSWORD1_DESC"
|
||||
field="password2"
|
||||
filter="raw"
|
||||
label="COM_USERS_FIELD_RESET_PASSWORD1_LABEL"
|
||||
message="COM_USERS_FIELD_RESET_PASSWORD1_MESSAGE"
|
||||
required="true"
|
||||
size="30"
|
||||
validate="equals"
|
||||
/>
|
||||
<field name="password2" type="password"
|
||||
autocomplete="off"
|
||||
class="validate-password"
|
||||
description="COM_USERS_FIELD_RESET_PASSWORD2_DESC"
|
||||
filter="raw"
|
||||
label="COM_USERS_FIELD_RESET_PASSWORD2_LABEL"
|
||||
required="true"
|
||||
size="30"
|
||||
/>
|
||||
</fieldset>
|
||||
</form>
|
18
components/com_users/models/forms/reset_confirm.xml
Normal file
18
components/com_users/models/forms/reset_confirm.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<form>
|
||||
<fieldset name="default" label="COM_USERS_RESET_CONFIRM_LABEL">
|
||||
<field name="username" type="text"
|
||||
description="COM_USERS_FIELD_RESET_CONFIRM_USERNAME_DESC"
|
||||
filter="username"
|
||||
label="COM_USERS_FIELD_RESET_CONFIRM_USERNAME_LABEL"
|
||||
required="true"
|
||||
size="30"/>
|
||||
|
||||
<field name="token" type="text"
|
||||
description="COM_USERS_FIELD_RESET_CONFIRM_TOKEN_DESC"
|
||||
filter="alnum"
|
||||
label="COM_USERS_FIELD_RESET_CONFIRM_TOKEN_LABEL"
|
||||
required="true"
|
||||
size="32"/>
|
||||
</fieldset>
|
||||
</form>
|
20
components/com_users/models/forms/reset_request.xml
Normal file
20
components/com_users/models/forms/reset_request.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<form>
|
||||
<fieldset name="default" label="COM_USERS_RESET_REQUEST_LABEL">
|
||||
<field name="email" type="text"
|
||||
class="validate-username"
|
||||
description="COM_USERS_FIELD_PASSWORD_RESET_DESC"
|
||||
filter="email" label="COM_USERS_FIELD_PASSWORD_RESET_LABEL"
|
||||
required="true"
|
||||
size="30"
|
||||
/>
|
||||
|
||||
<field
|
||||
name="captcha"
|
||||
type="captcha"
|
||||
label="COM_USERS_CAPTCHA_LABEL"
|
||||
description="COM_USERS_CAPTCHA_DESC"
|
||||
validate="captcha"
|
||||
/>
|
||||
</fieldset>
|
||||
</form>
|
14
components/com_users/models/forms/sitelang.xml
Normal file
14
components/com_users/models/forms/sitelang.xml
Normal file
@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<form>
|
||||
<fields name="params">
|
||||
<fieldset name="params" label="COM_USERS_SETTINGS_FIELDSET_LABEL">
|
||||
<field name="language" type="language"
|
||||
client="site"
|
||||
description="COM_USERS_USER_FIELD_FRONTEND_LANGUAGE_DESC"
|
||||
label="COM_USERS_USER_FIELD_FRONTEND_LANGUAGE_LABEL"
|
||||
required="true"
|
||||
filter="cmd"
|
||||
/>
|
||||
</fieldset>
|
||||
</fields>
|
||||
</form>
|
Reference in New Issue
Block a user