Automattic\WooCommerce\Internal\Admin

Events::possibly_update_notes()protectedWC 1.0

Updates notes that should be updated.

Метод класса: Events{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->possibly_update_notes();

Код Events::possibly_update_notes() WC 8.7.0

protected function possibly_update_notes() {
	foreach ( self::$note_classes_to_added_or_updated as $note_class ) {
		if ( method_exists( $note_class, 'possibly_update_note' ) ) {
			$note_class::possibly_update_note();
		}
	}
}