hypejunction / forms_validation
Form validation components for Elgg
Package info
github.com/hypeJunction/Elgg-forms_validation
Type:elgg-plugin
pkg:composer/hypejunction/forms_validation
4.0.0
2026-04-30 07:27 UTC
Requires
- php: >=7.4
- bower-asset/parsleyjs: ~2.3
- composer/installers: ^2.0
- elgg/elgg: ^4.0
This package is auto-updated.
Last update: 2026-04-30 07:48:12 UTC
README
Screenshots
Features
- Client-side validation with Parsley.js
- Customizable error messages
- Easy to integrate into existing forms
- Extendable with custom validation rules
Usage
- Validation rules and other options are described in Parsley.js documentation http://parsleyjs.org/
- To enable client-side form validation, pass 'validate' parameter with form vars:
echo elgg_view_form('my/form', array( 'validate' => true, ), array()); // or echo elgg_view('input/form', array( 'action' => 'action/my/action', 'validate' => true, ));