LLMS_Install::init()

Initialize the install class


Description Description

Hooks all actions.


Top ↑

Return Return

(void)


Top ↑

Source Source

File: includes/class.llms.install.php

47
48
49
50
51
52
53
54
55
56
57
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' ) );
 
}

Top ↑

Changelog Changelog

Changelog
Version Description
3.4.3 Unknown.
3.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.