Automattic\WooCommerce\Internal\Admin
Events::possibly_update_notes
Updates notes that should be updated.
Метод класса: Events{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->possibly_update_notes();
Код Events::possibly_update_notes() Events::possibly update notes WC 10.8.1
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();
}
}
}