ActionScheduler_Abstract_ListTable::display_admin_notices()
Display the table heading and search query, if any
Method of the class: ActionScheduler_Abstract_ListTable{}
No Hooks.
Return
null
. Nothing (null).
Usage
// protected - for code of main (parent) or child class $result = $this->display_admin_notices();
ActionScheduler_Abstract_ListTable::display_admin_notices() ActionScheduler Abstract ListTable::display admin notices code WC 9.5.1
protected function display_admin_notices() { foreach ( $this->admin_notices as $notice ) { echo '<div id="message" class="' . esc_attr( $notice['class'] ) . '">'; echo ' <p>' . wp_kses_post( $notice['message'] ) . '</p>'; echo '</div>'; } }