LLMS_Admin_Import::__construct()

Constructor


Return Return

(void)


Top ↑

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' ) );

	}

Top ↑

Changelog 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.

Top ↑

User Contributed Notes User Contributed Notes

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