Automattic\WooCommerce\Internal\Admin\Notes
MagentoMigration::save_note()
Save the note to the database.
Метод класса: MagentoMigration{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$result = MagentoMigration::save_note();
Код MagentoMigration::save_note() MagentoMigration::save note WC 9.7.1
public static function save_note() { $note = self::get_note(); if ( self::note_exists() ) { return; } $note->save(); }