Tribe__Updater::is_version_in_db_less_than( $version )
Returns true if the version in the DB is less than the provided version
Return
(boolean)
Source
File: src/Tribe/Updater.php
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 );
}
Changelog
| Version | Description |
|---|---|
| 4.9.4 | Introduced. |