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_Events::__construct()
Private Constructor
Contents
Return Return
(void)
Source Source
File: includes/class-llms-events.php
private function __construct() { add_action( 'init', array( $this, 'register_events' ), 9 ); add_action( 'init', array( $this, 'store_cookie' ) ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
4.5.0 | Register events at init hook with priority 9 in place of 10. |
3.36.0 | Introduced. |