array( // 'wc_blocks_update_710_blockified_product_grid_block', // ). ); /** * Runs all the necessary migrations. * * @var array */ public function run_migrations() { $current_db_version = get_option( Options::WC_BLOCK_VERSION, '' ); if ( empty( $current_db_version ) ) { return; } foreach ( $this->db_upgrades as $version => $update_callbacks ) { if ( version_compare( $current_db_version, $version, '<' ) ) { foreach ( $update_callbacks as $update_callback ) { $this->{$update_callback}(); } } } } /** * Set a flag to indicate if the blockified Product Grid Block should be rendered by default. */ public static function wc_blocks_update_710_blockified_product_grid_block() { update_option( Options::WC_BLOCK_USE_BLOCKIFIED_PRODUCT_GRID_BLOCK_AS_TEMPLATE, wc_bool_to_string( false ) ); } }