Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

WC_Notes_Run_Db_Update::update_done_notice( int $note_id )

Update the existing note with $note_id with information that db upgrade is done.


Description Description

This is the last notice (3 out of 3 notices) displayed to the user.


Parameters Parameters

$note_id

(Required) Note id to update.


Top ↑

Source Source

File: includes/admin/notes/class-wc-notes-run-db-update.php

	private static function update_done_notice( $note_id ) {
		$hide_notices_url = html_entity_decode( // to convert &s to normal &, otherwise produces invalid link.
			wp_nonce_url(
				add_query_arg(
					'wc-hide-notice',
					'update',
					admin_url( 'admin.php?page=wc-settings' )
				),
				'woocommerce_hide_notices_nonce',
				'_wc_notice_nonce'
			)
		);

		$note_actions = array(
			array(
				'name'    => 'update-db_done',
				'label'   => __( 'Thanks!', 'woocommerce' ),
				'url'     => $hide_notices_url,
				'status'  => 'actioned',
				'primary' => true,
			),
		);

		$note = new WC_Admin_Note( $note_id );

		// Check if the note needs to be updated (e.g. expired nonce or different note type stored in the previous run).
		if ( self::note_up_to_date( $note, $hide_notices_url, wp_list_pluck( $note_actions, 'name' ) ) ) {
			return $note_id;
		}

		$note->set_title( __( 'WooCommerce database update done', 'woocommerce' ) );
		$note->set_content( __( 'WooCommerce database update complete. Thank you for updating to the latest version!', 'woocommerce' ) );

		$note->clear_actions();
		foreach ( $note_actions as $note_action ) {
			$note->add_action( ...array_values( $note_action ) );
		}

		$note->save();
	}


Top ↑

User Contributed Notes User Contributed Notes

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