=’ ) ) {
add_action( ‘admin_notices’, ‘envato_market_fail_php_version’ );
} elseif ( ENVATO_MARKET_SLUG !== ‘envato-market’ ) {
add_action( ‘admin_notices’, ‘envato_market_fail_installation_method’ );
} else {
if ( ! function_exists( ‘is_plugin_active_for_network’ ) ) {
// Makes sure the plugin functions are defined before trying to use them.
require_once( ABSPATH . ‘/wp-admin/includes/plugin.php’ );
}
define( ‘ENVATO_MARKET_NETWORK_ACTIVATED’, is_plugin_active_for_network( ENVATO_MARKET_SLUG . ‘/envato-market.php’ ) );
/* Envato_Market Class */
require_once ENVATO_MARKET_PATH . ‘inc/class-envato-market.php’;
if ( ! function_exists( ‘envato_market’ ) ) :
/**
* The main function responsible for returning the one true
* Envato_Market Instance to functions everywhere.
*
* Use this function like you would a global variable, except
* without needing to declare the global.
*
* Example:
*
* @since 1.0.0
* @return Envato_Market The one true Envato_Market Instance
*/
function envato_market() {
return Envato_Market::instance();
}
endif;
/**
* Loads the main instance of Envato_Market to prevent
* the need to use globals.
*
* This doesn’t fire the activation hook correctly if done in ‘after_setup_theme’ hook.
*
* @since 1.0.0
* @return object Envato_Market
*/
envato_market();
}
if ( ! function_exists( ‘envato_market_fail_php_version’ ) ) {
/**
* Show in WP Dashboard notice about the plugin is not activated.
*
* @since 2.0.0
*
* @return void
*/
function envato_market_fail_php_version() {
$message = esc_html__( ‘The Envato Market plugin requires PHP version 5.4+, plugin is currently NOT ACTIVE. Please contact the hosting provider to upgrade the version of PHP.’, ‘envato-market’ );
$html_message = sprintf( ‘
‘, wpautop( $message ) );
echo wp_kses_post( $html_message );
}
}
if ( ! function_exists( ‘envato_market_fail_installation_method’ ) ) {
/**
* The plugin needs to be installed into the `envato-market/` folder otherwise it will not work correctly.
* This alert will display if someone has installed it into the incorrect folder (i.e. github download zip).
*
* @since 2.0.0
*
* @return void
*/
function envato_market_fail_installation_method() {
$message = sprintf( esc_html__( ‘Envato Market plugin is not installed correctly. Please delete this plugin and get the correct zip file from %s.’, ‘envato-market’ ), ‘https://envato.com/market-plugin/‘ );
$html_message = sprintf( ‘
‘, wpautop( $message ) );
echo wp_kses_post( $html_message );
}
}