Automattic\WooCommerce\Internal\Admin
Events::possibly_add_notes
Adds notes that should be added.
Метод класса: Events{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->possibly_add_notes();
Код Events::possibly_add_notes() Events::possibly add notes WC 10.3.4
protected function possibly_add_notes() {
foreach ( self::$note_classes_to_added_or_updated as $note_class ) {
if ( method_exists( $note_class, 'possibly_add_note' ) ) {
$note_class::possibly_add_note();
}
}
}