File Editor
Directories:
.. (Back)
Admin
Ajax
Asset
Context
Customizer
Debug_Bar
Dialog
Documentation
Duplicate
Editor
Image
JSON_LD
Languages
Log
Meta
Models
Onboarding
PUE
Process
Promoter
REST
Repository
Service_Providers
Shortcode
Support
Tabbed_View
Tooltip
Traits
Utils
Validator
Values
Widget
Files:
Abstract_Deactivation.php
Abstract_Plugin_Register.php
App_Shop.php
Assets.php
Assets_Pipeline.php
Autoloader.php
Cache.php
Cache_Listener.php
Changelog_Reader.php
Container.php
Context.php
Cost_Utils.php
Credits.php
Customizer.php
DB_Lock.php
Data.php
Date_Utils.php
Db.php
Debug.php
Dependency.php
Deprecation.php
Editor.php
Error.php
Exception.php
Extension.php
Extension_Loader.php
Feature_Detection.php
Field.php
Field_Conditional.php
Log.php
Main.php
Notices.php
Plugin_Meta_Links.php
Plugins.php
Plugins_API.php
Post_History.php
Post_Transient.php
Promise.php
Repository.php
Rewrite.php
Settings.php
Settings_Manager.php
Settings_Tab.php
Simple_Table.php
Support.php
Tabbed_View.php
Template.php
Template_Part_Cache.php
Templates.php
Terms.php
Timezones.php
Tracker.php
Updater.php
Validate.php
View_Helpers.php
Create New File
Create
Edit File: Updater.php
<?php /** * Run schema updates on plugin activation or updates * * @since 4.9.4 * */ class Tribe__Updater { protected $version_option = 'schema-version'; protected $reset_version = '3.9'; // when a reset() is called, go to this version protected $current_version = 0; public $capabilities; /** * Tribe__Updater constructor. * * @since 4.9.4 * * @param int $current_version the current version number of a plugin */ public function __construct( $current_version ) { $this->current_version = $current_version; } /** * We've had problems with the notoptions and * alloptions caches getting out of sync with the DB, * forcing an eternal update cycle * * @since 4.9.4 * */ protected function clear_option_caches() { wp_cache_delete( 'notoptions', 'options' ); wp_cache_delete( 'alloptions', 'options' ); } /** * Run Updates for a Plugin * * @since 4.9.4 * */ public function do_updates() { $this->clear_option_caches(); $updates = $this->get_update_callbacks(); uksort( $updates, 'version_compare' ); try { foreach ( $updates as $version => $callback ) { if ( ! $this->is_new_install() && version_compare( $version, $this->current_version, '<=' ) && $this->is_version_in_db_less_than( $version ) ) { call_user_func( $callback ); } } foreach ( $this->get_constant_update_callbacks() as $callback ) { call_user_func( $callback ); } $this->update_version_option( $this->current_version ); } catch ( Exception $e ) { // fail silently, but it should try again next time } } /** * Update Version Number for a Plugin * * @since 4.9.4 * * @param int $new_version the current version number of a plugin */ public function update_version_option( $new_version ) { Tribe__Settings_Manager::set_option( $this->version_option, $new_version ); } /** * Returns an array of callbacks with version strings as keys. * Any key higher than the version recorded in the DB * and lower than $this->current_version will have its * callback called. * * @since 4.9.4 * * @return array */ public function get_update_callbacks() { return []; } /** * Returns an array of callbacks that should be called * every time the version is updated * * @since 4.9.4 * * @return array */ public function get_constant_update_callbacks() { return [ [ $this, 'flush_rewrites' ], ]; } /** * Get version from Tribe Settings for the Plugin * * @since 4.9.4 * * @return mixed the version number of the plugin saved in the options */ public function get_version_from_db() { return Tribe__Settings_Manager::get_option( $this->version_option ); } /** * Returns true if the version in the DB is less than the provided version * * @since 4.9.4 * * @return boolean */ public function is_version_in_db_less_than( $version ) { $version_in_db = $this->get_version_from_db(); return ( version_compare( $version, $version_in_db ) > 0 ); } /** * Returns true if this is a new install * * @since 4.9.4 * * @return boolean */ public function is_new_install() { $version_in_db = $this->get_version_from_db(); return empty( $version_in_db ); } /** * Returns true if an update is required * * @since 4.9.4 * * @return boolean */ public function update_required() { return $this->is_version_in_db_less_than( $this->current_version ); } /** * Flush Rewrite rules * * @since 4.9.4 * */ public function flush_rewrites() { // run after 'init' to ensure that all CPTs are registered add_action( 'wp_loaded', 'flush_rewrite_rules' ); } /** * Reset update flags. All updates past $this->reset_version will * run again on the next page load * * @since 4.9.4 * */ public function reset() { $this->update_version_option( $this->reset_version ); } }
Save Changes
Rename File
Rename