WC_Install::needs_db_update()
Is a DB update needed?
Метод класса: WC_Install{}
Хуков нет.
Возвращает
true|false
.
Использование
$result = WC_Install::needs_db_update();
Список изменений
С версии 3.2.0 | Введена. |
Код WC_Install::needs_db_update() WC Install::needs db update WC 9.8.1
public static function needs_db_update() { $current_db_version = get_option( 'woocommerce_db_version', null ); $updates = self::get_db_update_callbacks(); $update_versions = array_keys( $updates ); usort( $update_versions, 'version_compare' ); return ! is_null( $current_db_version ) && version_compare( $current_db_version, end( $update_versions ), '<' ); }