LLMS_Admin_Analytics::display_messages_html()
display messages in analytics
Description Description
Return Return
(void)
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>'; } } }
Expand full source code Collapse full source code View on GitHub