LLMS_Admin_Setup_Wizard::admin_menu()

Register wizard setup page


Return Return

(string) The hook suffix of the setup wizard page ("admin_page_llms-setup"), or false if the user does not have the capability required.


Top ↑

Source Source

File: includes/admin/class.llms.admin.setup.wizard.php

		// Enqueue importer styles.
		add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_importer' ) );
	}

	/**
	 * Enqueue importer styles.
	 *
	 * @since 7.4.0
	 *
	 * @return bool
	 */
	public function enqueue_importer(): bool {
		if ( 'finish' === $this->get_current_step() ) {
			return llms()->assets->enqueue_style( 'llms-admin-importer' );
		}

		return false;
	}


Top ↑

Changelog Changelog

Changelog
Version Description
4.4.4 Added dashboard page title.
3.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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