// SYSTEM PANEL //
[ROOT]
/
home
/
salvufkx
/
homedir
/
public_html
/
wp-content
/
plugins
/
shortcodes-ultimate
/
inc
/
core
[ PARENT ]
EDIT :: requirements.php
<?php class Su_Requirements { static $config = array( 'php' => '5.1', 'wp' => '3.5' ); /** * Constructor */ function __construct() { add_action( 'su/activation', array( __CLASS__, 'php' ) ); add_action( 'su/activation', array( __CLASS__, 'wp' ) ); } /** * Check PHP version */ public static function php() { $php = phpversion(); load_plugin_textdomain( 'su', false, dirname( plugin_basename( SU_PLUGIN_FILE ) ), '/languages/' ); $msg = sprintf( __( '<h1>Oops! Plugin not activated…</h1> <p>Shortcodes Ultimate is not fully compatible with your PHP version (%s).<br />Reccomended PHP version – %s (or higher).</p><a href="%s">← Return to the plugins screen</a> <a href="%s"%s>Continue and activate anyway →</a>', 'shortcodes-ultimate' ), $php, self::$config['php'], network_admin_url( 'plugins.php?deactivate=true' ), $_SERVER['REQUEST_URI'] . '&continue=true', ' style="float:right;font-weight:bold"' ); // Check Forced activation if ( isset( $_GET['continue'] ) ) return; // PHP version is too low elseif ( version_compare( self::$config['php'], $php, '>' ) ) { deactivate_plugins( plugin_basename( SU_PLUGIN_FILE ) ); wp_die( $msg ); } } /** * Check WordPress version */ public static function wp() { $wp = get_bloginfo( 'version' ); load_plugin_textdomain( 'su', false, dirname( plugin_basename( SU_PLUGIN_FILE ) ), '/languages/' ); $msg = sprintf( __( '<h1>Oops! Plugin not activated…</h1> <p>Shortcodes Ultimate is not fully compatible with your version of WordPress (%s).<br />Reccomended WordPress version – %s (or higher).</p><a href="%s">← Return to the plugins screen</a> <a href="%s"%s>Continue and activate anyway →</a>', 'shortcodes-ultimate' ), $wp, self::$config['wp'], network_admin_url( 'plugins.php?deactivate=true' ), $_SERVER['REQUEST_URI'] . '&continue=true', ' style="float:right;font-weight:bold"' ); // Check Forced activation if ( isset( $_GET['continue'] ) ) return; // PHP version is too low elseif ( version_compare( self::$config['wp'], $wp, '>' ) ) { deactivate_plugins( plugin_basename( SU_PLUGIN_FILE ) ); wp_die( $msg ); } } } new Su_Requirements;
SAVE
CANCEL