LLMS_Admin_Analytics::display_messages_html()

display messages in analytics


Description Description


Return Return

(void)


Top ↑

Source Source

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

	public static function display_messages_html() {

		if ( sizeof( self::$errors ) > 0 ) {

			foreach ( self::$errors as $error ) {
				echo '<div class="error"><p><strong>' . esc_html( $error ) . '</strong></p></div>';
			}
		}
	}


Top ↑

User Contributed Notes User Contributed Notes

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