File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
<?php
use Tribe__Events__Main as TEC;
/**
* Verifies that the current install of The Events Calendar is not
* a pre-existing setup, and trigger the activation of View V2.
*
* @since 4.9.13
*
* @return bool When to activate the View V2 or not.
*/
function tribe_events_is_new_install() {
$previous_versions = array_filter( (array) tribe_get_option( 'previous_ecp_versions', [] ) );
usort( $previous_versions, 'version_compare' );
$has_previous_versions = ! empty( $previous_versions );
return ! $has_previous_versions;
}
