-
Notifications
You must be signed in to change notification settings - Fork 1
/
inbound-automation.php
176 lines (150 loc) · 5.38 KB
/
inbound-automation.php
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
<?php
/*
Plugin Name: Inbound Automation
Plugin URI: http://www.inboundnow.com/
Description: Automate emails, segmenting, scoring & more.
*/
if (!class_exists('Inbound_Automation_Plugin') && class_exists('Inbound_Leads_Plugin')) {
final class Inbound_Automation_Plugin {
/**
* Main Inbound_Automation_Plugin Instance
*/
public function __construct() {
self::define_constants();
self::includes();
self::load_text_domain_init();
}
/**
* Setup plugin constants
*/
private static function define_constants() {
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__) ) );
}
/**
* Include required plugin files
*/
private static function includes() {
switch (is_admin()) :
case true :
/* loads admin files */
include_once('classes/class.activation.php');
include_once('classes/class.activation.upgrade-routines.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('definitions/trigger.form_submission_event.php');
include_once('definitions/trigger.page_tracking_event.php');
include_once('definitions/action.wait.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/query.lead_data.php');
BREAK;
case false :
/* load front-end files */
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.form_submission_event.php');
include_once('definitions/trigger.page_tracking_event.php');
include_once('definitions/action.wait.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/query.lead_data.php');
BREAK;
endswitch;
}
/**
* Loads the correct .mo file for this plugin
*/
private static function load_text_domain_init() {
add_action( 'init' , array( __CLASS__ , 'load_text_domain' ) );
}
public static function load_text_domain() {
load_plugin_textdomain( 'inbound-automation' , false , INBOUND_AUTOMATION_SLUG . '/lang/' );
}
/* START PHP VERSION CHECKS */
/**
* Admin notices, collected and displayed on proper action
*
* @var array
*/
public static $notices = array();
/**
* Whether the current PHP version meets the minimum requirements
*
* @return bool
*/
public static function is_valid_php_version() {
return version_compare( PHP_VERSION, '5.3', '>=' );
}
/**
* Invoked when the PHP version check fails. Load up the translations and
* add the error message to the admin notices
*/
static function fail_php_version() {
//add_action( 'plugins_loaded', array( __CLASS__, 'load_text_domain_init' ) );
$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' ) );
}
/**
* Handle notice messages according to the appropriate context (WP-CLI or the WP Admin)
*
* @param string $message
* @param bool $is_error
* @return void
*/
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 {
// Trigger admin notices
add_action( 'all_admin_notices', array( __CLASS__, 'admin_notices' ) );
self::$notices[] = compact( 'message', 'is_error' );
}
}
/**
* Show an error or other message in the WP Admin
*
* @action all_admin_notices
* @return void
*/
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 );
}
}
/* END PHP VERSION CHECKS */
}
/* Initiate Plugin */
if ( Inbound_Automation_Plugin::is_valid_php_version() ) {
// Get Inbound Now Running
$GLOBALS['Inbound_Automation_Plugin'] = new Inbound_Automation_Plugin;
} else {
// Show Fail
Inbound_Automation_Plugin::fail_php_version();
}
/**
* Checks if Inbound Automation is active
*/
function inbound_automation_check_active() {
return 1;
}
}