version_check(); add_action( 'init', [ $this, 'load' ], 999 ); } /** * Version Check * * @return void */ public function version_check() { $file = realpath( dirname( __FILE__ ) . '/utm-analytics/version.json' ); // Is file exist? if ( is_file( $file ) ) { // @codingStandardsIgnoreStart $file_data = json_decode( file_get_contents( $file ), true ); // @codingStandardsIgnoreEnd global $utm_analytics_version, $utm_analytics_init; $path = realpath( dirname( __FILE__ ) . '/utm-analytics/bsf-utm-analytics.php' ); $version = isset( $file_data['bsf-utm-analytics'] ) ? $file_data['bsf-utm-analytics'] : 0; if ( null === $utm_analytics_version ) { $utm_analytics_version = '0.0.1'; } // Compare versions. if ( version_compare( $version, $utm_analytics_version, '>=' ) ) { $utm_analytics_version = $version; $utm_analytics_init = $path; } } } /** * Load latest plugin * * @return void */ public function load() { global $utm_analytics_version, $utm_analytics_init; if ( is_file( realpath( $utm_analytics_init ) ) ) { include_once realpath( $utm_analytics_init ); } } } UAGB_Utm_Analytics::get_instance(); endif;