Automattic\WooCommerce\Blocks\Domain
Package::set_version_stored_on_db
Sets the version of WooCommerce Blocks in the database. This is useful during the first installation or after the upgrade process.
Метод класса: Package{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$Package = new Package(); $Package->set_version_stored_on_db();
Код Package::set_version_stored_on_db() Package::set version stored on db WC 10.4.3
public function set_version_stored_on_db() {
update_option( Options::WC_BLOCK_VERSION, $this->get_version() );
}