LLMS_Install::init()
Initialize the install class
Description Description
Hooks all actions.
Return Return
(void)
Source Source
File: includes/class.llms.install.php
public static function init() {
include_once ABSPATH . 'wp-admin/includes/plugin.php';
require_once 'admin/llms.functions.admin.php';
add_action( 'init', array( __CLASS__, 'init_background_updater' ), 4 );
add_action( 'init', array( __CLASS__, 'check_version' ), 5 );
add_action( 'admin_init', array( __CLASS__, 'update_actions' ) );
add_action( 'admin_init', array( __CLASS__, 'wizard_redirect' ) );
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.4.3 | Unknown. |
| 3.0.0 | Introduced. |