LLMS_Admin_Assets::register_quill( $modules = array() )

Register Quill CSS & JS


Return Return

(void)


Top ↑

Source Source

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

	public static function register_quill( $modules = array() ) {

		if ( ! wp_script_is( 'llms-quill', 'registered' ) ) {
			wp_register_script( 'llms-quill', LLMS_PLUGIN_URL . 'assets/vendor/quill/quill' . LLMS_ASSETS_SUFFIX . '.js', array(), '1.3.5', true );
			wp_register_style( 'llms-quill-bubble', LLMS_PLUGIN_URL . 'assets/vendor/quill/quill.bubble' . LLMS_ASSETS_SUFFIX . '.css', array(), '1.3.5', 'screen' );
		}

		foreach ( $modules as $module ) {
			llms()->assets->register_script( "llms-quill-{$module}" );
		}

	}


Top ↑

Changelog Changelog

Changelog
Version Description
6.10.0 Load modules using llms()->assets.
3.17.8 Unknown.
3.16.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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