LLMS_Controller_Account::__construct()
Constructor
Contents
Return Return
(void)
Source Source
File: includes/forms/controllers/class.llms.controller.account.php
public function __construct() {
add_action( 'wp', array( $this, 'reset_password_link_redirect' ), 1 );
add_action( 'init', array( $this, 'update' ) );
add_action( 'init', array( $this, 'lost_password' ) );
add_action( 'init', array( $this, 'reset_password' ) );
add_action( 'init', array( $this, 'cancel_subscription' ) );
add_action( 'init', array( $this, 'redeem_voucher' ) );
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 5.0.0 | Add reset password link redirection handler. |
| 3.7.0 | |
| 3.10.0 | Introduced. |