LLMS_Admin_Import::enqueue()

Enqueue static assets used on the screen


Return Return

(null|boolean) Returns null when called outside of the intended screen context, true on success, or false on error.


Top ↑

Source Source

File: includes/admin/class.llms.admin.import.php

	public function enqueue() {

		if ( ! $this->get_screen() ) {
			return null;
		}

		return llms()->assets->enqueue_style( 'llms-admin-importer' );

	}


Top ↑

Changelog Changelog

Changelog
Version Description
4.8.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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