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: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201:
<?php
if (!class_exists('Inbound_Automation_Plugin') && class_exists('Inbound_Leads_Plugin')) {
final class Inbound_Automation_Plugin {
public function __construct() {
self::define_constants();
self::includes();
self::load_text_domain_init();
}
private static function define_constants() {
define( 'INBOUND_AUTOMATION_CURRENT_VERSION', '2.0.0' );
define( 'INBOUND_AUTOMATION_FILE', __FILE__ );
define( 'INBOUND_AUTOMATION_URLPATH', plugins_url( '/' , __FILE__ ) );
define( 'INBOUND_AUTOMATION_PATH', WP_PLUGIN_DIR.'/'.plugin_basename( dirname(__FILE__) ).'/' );
define( 'INBOUND_AUTOMATION_SLUG', plugin_basename( dirname(__FILE__) ) );
}
private static function includes() {
switch (is_admin()) :
case true :
include_once('classes/class.activation.upgrade-routines.php');
include_once('classes/class.activation.php');
include_once('classes/class.adminbar.php');
include_once('classes/class.post-type.automation.php');
include_once('classes/class.logs.php');
include_once('classes/class.definitions.loader.php');
include_once('classes/class.metaboxes.automation.php');
include_once('classes/class.automation.php');
include_once('classes/class.lead-profile.php');
include_once('definitions/trigger.inbound_store_lead_post.php');
include_once('definitions/trigger.inbound_double_optin_confirm.php');
include_once('definitions/trigger.user_register.php');
include_once('definitions/trigger.set_object_terms.php');
include_once('definitions/trigger.draft_to_publish.php');
include_once('definitions/trigger.inbound_track_link.php');
include_once('definitions/action.wait.php');
include_once('definitions/action.create_lead.php');
include_once('definitions/action.create_user.php');
include_once('definitions/action.send_email.php');
include_once('definitions/action.relay_data.php');
include_once('definitions/action.add_remove_list.php');
include_once('definitions/action.add_remove_tag.php');
include_once('definitions/action.kill_lead_tasks.php');
include_once('definitions/query.lead_data.php');
include_once('definitions/query.user_data.php');
BREAK;
case false :
include_once('classes/class.post-type.automation.php');
include_once('classes/class.automation.php');
include_once('classes/class.logs.php');
include_once('classes/class.definitions.loader.php');
include_once('classes/class.metaboxes.automation.php');
include_once('classes/class.automation.php');
include_once('definitions/trigger.inbound_store_lead_post.php');
include_once('definitions/trigger.draft_to_publish.php');
include_once('definitions/trigger.inbound_double_optin_confirm.php');
include_once('definitions/trigger.user_register.php');
include_once('definitions/trigger.inbound_track_link.php');
include_once('definitions/action.wait.php');
include_once('definitions/action.create_user.php');
include_once('definitions/action.create_lead.php');
include_once('definitions/action.send_email.php');
include_once('definitions/action.relay_data.php');
include_once('definitions/action.add_remove_list.php');
include_once('definitions/action.add_remove_tag.php');
include_once('definitions/action.kill_lead_tasks.php');
include_once('definitions/query.lead_data.php');
include_once('definitions/query.user_data.php');
BREAK;
endswitch;
}
private static function load_text_domain_init() {
add_action( 'init' , array( __CLASS__ , 'load_text_domain' ) );
}
public static function load_text_domain() {
load_plugin_textdomain( 'automation' , false , INBOUND_AUTOMATION_SLUG . '/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( __( 'Inbound Automation 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>', 'cta' ) );
}
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_Automation_Plugin::is_valid_php_version() ) {
new Inbound_Automation_Plugin;
} else {
Inbound_Automation_Plugin::fail_php_version();
}
function inbound_automation_check_active() {
return 1;
}
}