LLMS_Admin_Import::__construct()
Constructor
Contents
Return Return
(void)
Source Source
File: includes/admin/class.llms.admin.import.php
public function __construct() {
add_action( 'admin_init', array( $this, 'cloud_import' ) );
add_action( 'admin_init', array( $this, 'upload_import' ) );
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue' ) );
add_action( 'current_screen', array( $this, 'add_help_tabs' ) );
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 4.8.0 | Added hooks handling cloud imports and outputting WP help tabs. |
| 3.35.0 | Initialize at admin_init instead of init. |
| 3.3.0 | Introduced. |