Replaced repeated code from get_current_notice with the function call.
This commit is contained in:
parent
a2f985414e
commit
6b11451b88
|
@ -263,26 +263,22 @@ class WC_Notes_Run_Db_Update {
|
||||||
*/
|
*/
|
||||||
private static function should_show_notice() {
|
private static function should_show_notice() {
|
||||||
if ( ! \WC_Install::needs_db_update() ) {
|
if ( ! \WC_Install::needs_db_update() ) {
|
||||||
try {
|
|
||||||
$data_store = \WC_Data_Store::load( 'admin-note' );
|
$note_id = self::get_current_notice();
|
||||||
} catch ( Exception $e ) {
|
|
||||||
// Bail out in case of incorrect use.
|
// Db update not needed && note does not exist -> don't show it.
|
||||||
|
if ( ! $note_id ) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
$note_ids = $data_store->get_notes_with_name( self::NOTE_NAME );
|
|
||||||
|
|
||||||
if ( ! empty( $note_ids ) ) {
|
|
||||||
// Db update not needed && note actioned -> don't show it.
|
// Db update not needed && note actioned -> don't show it.
|
||||||
$note = new WC_Admin_Note( $note_ids[0] );
|
$note = new WC_Admin_Note( $note_id );
|
||||||
if ( $note::E_WC_ADMIN_NOTE_ACTIONED === $note->get_status() ) {
|
if ( $note::E_WC_ADMIN_NOTE_ACTIONED === $note->get_status() ) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
// Db update not needed && note does not exist -> don't show it.
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Db update needed -> show notice.
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue