Automattic\WooCommerce\Internal\Admin\Notes

MagentoMigration::save_note()public staticWC 1.0

Save the note to the database.

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

Хуков нет.

Возвращает

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

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

$result = MagentoMigration::save_note();

Код MagentoMigration::save_note() WC 8.7.0

public static function save_note() {
	$note = self::get_note();

	if ( self::note_exists() ) {
		return;
	}

	$note->save();
}