Tribe__Events__Tickets__Eventbrite__Updater::get_update_callbacks()

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.


Return

(array)


Top ↑

Source

File: src/Tribe/Updater.php

	public function get_update_callbacks() {
		return array(
			'4.4' => array( $this, 'migrate_legacy_settings' ),
		);
	}

Top ↑

Changelog

Changelog
Version Description
4.5 Introduced.