Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
LLMS_Form_Handler::__construct()
Private Constructor.
Contents
Return Return
(void)
Source Source
File: includes/forms/class-llms-form-handler.php
37 38 39 40 41 42 43 44 45 | private function __construct() { $this ->validator = new LLMS_Form_Validator(); add_action( 'lifterlms_before_user_update' , array ( $this , 'maybe_modify_edit_account_field_settings' ), 10, 3 ); add_action( 'lifterlms_before_user_update' , array ( $this , 'maybe_modify_required_address_fields' ), 10, 3 ); add_action( 'lifterlms_before_user_registration' , array ( $this , 'maybe_modify_required_address_fields' ), 10, 3 ); } |
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
5.0.0 | Introduced. |