1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180:
<?php
if ( ! class_exists( 'Inbound_Leads_Plugin' ) ) {
final class Inbound_Leads_Plugin {
public function __construct() {
self::define_constants();
self::includes();
self::load_text_domain_init();
self::load_shared_files();
}
private static function define_constants() {
define('WPL_CURRENT_VERSION', '3.2.5' );
define('WPL_URLPATH', plugins_url( '/', __FILE__ ) );
define('WPL_PATH', WP_PLUGIN_DIR."/".dirname( plugin_basename( __FILE__ ) ) . '/' );
define('WPL_CORE', plugin_basename( __FILE__ ) );
define('WPL_SLUG', 'leads' );
define('WPL_FILE', __FILE__ );
define('WPL_STORE_URL', 'http://www.inboundnow.com' );
$uploads = wp_upload_dir();
define('WPL_UPLOADS_PATH', $uploads['basedir'].'/leads/' );
define('WPL_UPLOADS_URLPATH', $uploads['baseurl'].'/leads/' );
}
private static function includes() {
if ( is_admin() ) {
include_once( WPL_PATH . 'classes/class.activation.php');
include_once( WPL_PATH . 'classes/class.activation.upgrade-routines.php');
include_once( WPL_PATH . 'classes/class.batch-processing.php');
include_once( WPL_PATH . 'classes/class.post-type.wp-lead.php');
include_once( WPL_PATH . 'classes/class.metaboxes.wp-lead.php');
include_once( WPL_PATH . 'classes/class.lead-management.php');
include_once( WPL_PATH . 'classes/class.settings.php');
include_once( WPL_PATH . 'classes/class.dashboard.php');
include_once( WPL_PATH . 'classes/class.tracking.php');
include_once( WPL_PATH . 'classes/class.admin-notices.php');
include_once( WPL_PATH . 'classes/class.login.php');
include_once( WPL_PATH . 'classes/class.user-profile.php');
} else {
include_once( WPL_PATH . 'classes/class.settings.php');
include_once( WPL_PATH . 'classes/class.post-type.wp-lead.php');
include_once( WPL_PATH . 'classes/class.login.php');
include_once( WPL_PATH . 'classes/class.tracking.php');
include_once( WPL_PATH . 'classes/class.inbound-forms.akismet.php');
}
}
private static function load_shared_files() {
if (!defined('INBOUND_PRO_PATH')) {
add_action( 'plugins_loaded', array( 'Inbound_Load_Shared' , 'init') , 1 );
include_once( WPL_PATH . 'shared/classes/class.load-shared.php');
}
}
private static function load_text_domain_init() {
add_action( 'init' , array( __CLASS__ , 'load_text_domain' ) );
}
public static function load_text_domain() {
load_plugin_textdomain( 'leads' , false , WPL_SLUG . '/assets/lang/' );
}
public static $notices = array();
public static function is_valid_php_version() {
return version_compare( PHP_VERSION, '5.3', '>=' );
}
static function fail_php_version() {
$plugin_url = admin_url( 'plugins.php' );
self::notice( __( 'Leads requires PHP version 5.3+ to run. Your version '.PHP_VERSION.' is not high enough.<br><u>Please contact your hosting provider</u> to upgrade your PHP Version.<br>The plugin is NOT Running. You can disable this warning message by <a href="'.$plugin_url.'">deactivating the plugin</a>', 'inbound-pro' ) );
}
public static function notice( $message, $is_error = true ) {
if ( defined( 'WP_CLI' ) ) {
$message = strip_tags( $message );
if ( $is_error ) {
WP_CLI::warning( $message );
} else {
WP_CLI::success( $message );
}
} else {
add_action( 'all_admin_notices', array( __CLASS__, 'admin_notices' ) );
self::$notices[] = compact( 'message', 'is_error' );
}
}
public static function admin_notices() {
foreach ( self::$notices as $notice ) {
$class_name = empty( $notice['is_error'] ) ? 'updated' : 'error';
$html_message = sprintf( '<div class="%s">%s</div>', esc_attr( $class_name ), wpautop( $notice['message'] ) );
echo wp_kses_post( $html_message );
}
}
}
if ( Inbound_Leads_Plugin::is_valid_php_version() ) {
new Inbound_Leads_Plugin;
} else {
Inbound_Leads_Plugin::fail_php_version();
}
function wpleads_check_active() {
return true;
}
}