heimrichhannot / contao-member_plus
A collection of enhancements for contao members.
Installs: 3 445
Dependents: 2
Suggesters: 0
Security: 0
Stars: 4
Watchers: 10
Forks: 2
Open Issues: 2
Type:contao-module
Requires
- php: ^7.1 || ^8.0
- contao-community-alliance/composer-plugin: ~2.4 || ~3.0
- contao/core-bundle: ^4.4
- heimrichhannot/contao-fieldpalette: ^1.4.5
- heimrichhannot/contao-tagsinput: ^2.1
Suggests
- heimrichhannot/contao-formhybrid: Needed for better login & registration experience, like registration & login with one module or better activation response (check README.md).
- dev-master
- 2.4.0
- 2.3.0
- 2.2.4
- 2.2.3
- 2.2.2
- 2.2.1
- 2.2.0
- 2.1.5
- 2.1.4
- 2.1.3
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.36
- 2.0.35
- 2.0.33
- 2.0.32
- 2.0.31
- 2.0.30
- 2.0.29
- 2.0.28
- 2.0.27
- 2.0.26
- 2.0.25
- 2.0.24
- 2.0.23
- 2.0.22
- 2.0.21
- 2.0.20
- 2.0.19
- 2.0.18
- 2.0.17
- 2.0.16
- 2.0.15
- 2.0.14
- 2.0.13
- 2.0.12
- 2.0.11
- 2.0.10
- 2.0.9
- 2.0.8
- 2.0.7
- 2.0.6
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 1.0.29
- 1.0.17
- 1.0.16
- 1.0.15
- 1.0.14
- 1.0.13
- 1.0.12
- 1.0.11
- 1.0.10
- 1.0.9
- 1.0.8
- 1.0.6
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
This package is auto-updated.
Last update: 2024-10-25 16:14:12 UTC
README
This bundle is abandoned and not actively maintained anymore. Please use https://github.com/heimrichhannot/contao-member-bundle.
Member Plus
A collection of enhancements for contao members.
Features
- additional fields (headline, alias, academicTitle, position, addressText, image)
- tl_content support for members, to add additional member content
- memberlist content element, with jumpTo Detail Page (show member reader module on custom page, article_reader - show reader on article only!, article or external page)
- memberreader module
Login after Activation
- added reg_activate_login checkbox for Registration Module, that enables automatic login after account activation
Registration & Login with one Module (requires heimrichhannot/contao-formhybrid
)
- domain whitelist
- optionally: show allowed domains in login form, or hide them but still check against them
- optionally: hide allowed domains list in frontend, but still check against them
- optionally: permanent redirect to jumpTo page after user was logged
Better Activation (requires heimrichhannot/contao-formhybrid
)
- Registration will leave used activation keys in database and add a "ACTIVATED:" prefix before
- Tell the user if his token has already been used
- Tell user if token is invalid
- You can now overwrite "accountActivatedMessage" in "activateAccount" Hook
- Always redirect after activation or activation error to current page without token parameter in url (or reg_jumpTo page), and than display messages
Fields
Hooks
modifyDCRegistrationPlusForm (requires heimrichhannot/contao-formhybrid
)
Modify the formhybrid Datacontainer array.
// config.php
$GLOBALS['TL_HOOKS']['modifyDCRegistrationPlusForm'][] = array('MyClass', 'modifyDCRegistrationPlusFormHook');
// MyClass.php
public function modifyDCRegistrationPlusFormHook(&$arrDca, \Model $objModule)
{
// manipulate the datacontainer and add fields, change labels and more
$arrDca['fields']['firstname']['eval']['placeholder'] = &$GLOBALS['TL_LANG']['tl_member']['myCustomFirstnamePlaceholder'];
}