-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwp-event-aggregator.php
349 lines (306 loc) · 11.9 KB
/
wp-event-aggregator.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
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
<?php
/**
* Plugin Name: WP Event Aggregator
* Plugin URI: http://xylusthemes.com/plugins/wp-event-aggregator/
* Description: Import Events from anywhere - Facebook, Eventbrite, Meetup, iCalendar and ICS into your WordPress site.
* Version: 1.8.3
* Author: Xylus Themes
* Author URL: http://xylusthemes.com
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: wp-event-aggregator
* Domain Path: /languages
*/
// If this file is called directly, abort.
if ( ! defined( 'ABSPATH' ) ) exit;
if( ! class_exists( 'WP_Event_Aggregator' ) ):
/**
* Main WP Event Aggregator class
*/
class WP_Event_Aggregator{
/** Singleton *************************************************************/
/**
* WP_Event_Aggregator The one true WP_Event_Aggregator.
*/
private static $instance;
public $common, $cpt, $eventbrite, $meetup, $facebook, $ical_parser, $ical, $admin, $manage_import, $wpea, $tec, $em, $eventon, $event_organizer, $aioec, $ee4, $my_calendar, $common_pro, $facebook_pro, $eventum, $cron, $fb_authorize, $meetup_authorize, $ical_parser_aioec;
/**
* Main WP Event Aggregator Instance.
*
* Insure that only one instance of WP_Event_Aggregator exists in memory at any one time.
* Also prevents needing to define globals all over the place.
*
* @since 1.0.0
* @static object $instance
* @uses WP_Event_Aggregator::setup_constants() Setup the constants needed.
* @uses WP_Event_Aggregator::includes() Include the required files.
* @uses WP_Event_Aggregator::laod_textdomain() load the language files.
* @see run_wp_event_aggregator()
* @return object| WP Event Aggregator the one true WP Event Aggregator.
*/
public static function instance() {
if( ! isset( self::$instance ) && ! (self::$instance instanceof WP_Event_Aggregator ) ) {
self::$instance = new WP_Event_Aggregator;
self::$instance->setup_constants();
add_action( 'plugins_loaded', array( self::$instance, 'load_textdomain' ) );
add_action( 'plugins_loaded', array( self::$instance, 'load_authorize_class' ), 20 );
add_action( 'wp_enqueue_scripts', array( self::$instance, 'wpea_enqueue_style' ) );
add_action( 'wp_enqueue_scripts', array( self::$instance, 'wpea_enqueue_script' ) );
add_filter( 'plugin_action_links_' . plugin_basename(__FILE__), array( self::$instance, 'wpea_setting_doc_links' ) );
self::$instance->includes();
self::$instance->common = new WP_Event_Aggregator_Common();
self::$instance->cpt = new WP_Event_Aggregator_Cpt();
self::$instance->eventbrite = new WP_Event_Aggregator_Eventbrite();
self::$instance->meetup = new WP_Event_Aggregator_Meetup();
self::$instance->facebook = new WP_Event_Aggregator_Facebook();
self::$instance->ical_parser = new WP_Event_Aggregator_Ical_Parser();
self::$instance->ical_parser_aioec = new WP_Event_Aggregator_Ical_Parser_AIOEC();
self::$instance->ical = new WP_Event_Aggregator_Ical();
self::$instance->admin = new WP_Event_Aggregator_Admin();
if( wpea_is_pro() ){
self::$instance->manage_import = new WP_Event_Aggregator_Pro_Manage_Import();
}else{
self::$instance->manage_import = new WP_Event_Aggregator_Manage_Import();
}
self::$instance->wpea = new WP_Event_Aggregator_WPEA();
self::$instance->tec = new WP_Event_Aggregator_TEC();
self::$instance->em = new WP_Event_Aggregator_EM();
self::$instance->eventon = new WP_Event_Aggregator_EventON();
self::$instance->event_organizer = new WP_Event_Aggregator_Event_Organizer();
self::$instance->aioec = new WP_Event_Aggregator_Aioec();
self::$instance->ee4 = new WP_Event_Aggregator_EE4();
self::$instance->my_calendar = new WP_Event_Aggregator_My_Calendar();
}
return self::$instance;
}
/** Magic Methods *********************************************************/
/**
* A dummy constructor to prevent WP_Event_Aggregator from being loaded more than once.
*
* @since 1.0.0
* @see WP_Event_Aggregator::instance()
* @see run_wp_event_aggregator()
*/
private function __construct() { /* Do nothing here */ }
/**
* A dummy magic method to prevent WP_Event_Aggregator from being cloned.
*
* @since 1.0.0
*/
public function __clone() { _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'wp-event-aggregator' ), '1.8.3' ); }
/**
* A dummy magic method to prevent WP_Event_Aggregator from being unserialized.
*
* @since 1.0.0
*/
public function __wakeup() { _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'wp-event-aggregator' ), '1.8.3' ); }
/**
* Setup plugins constants.
*
* @access private
* @since 1.0.0
* @return void
*/
private function setup_constants() {
// Plugin version.
if( ! defined( 'WPEA_VERSION' ) ){
define( 'WPEA_VERSION', '1.8.3' );
}
// Minimum Pro plugin version.
if( ! defined( 'WPEA_MIN_PRO_VERSION' ) ){
define( 'WPEA_MIN_PRO_VERSION', '1.7.9' );
}
// Plugin folder Path.
if( ! defined( 'WPEA_PLUGIN_DIR' ) ){
define( 'WPEA_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
}
// Plugin folder URL.
if( ! defined( 'WPEA_PLUGIN_URL' ) ){
define( 'WPEA_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
}
// Plugin root file.
if( ! defined( 'WPEA_PLUGIN_FILE' ) ){
define( 'WPEA_PLUGIN_FILE', __FILE__ );
}
// Options
if( ! defined( 'WPEA_OPTIONS' ) ){
define( 'WPEA_OPTIONS', 'wpea_options' );
}
// Pro plugin Buy now Link.
if( ! defined( 'WPEA_PLUGIN_BUY_NOW_URL' ) ){
define( 'WPEA_PLUGIN_BUY_NOW_URL', 'http://xylusthemes.com/plugins/wp-event-aggregator/?utm_source=insideplugin&utm_medium=web&utm_content=sidebar&utm_campaign=freeplugin' );
}
}
/**
* Include required files.
*
* @access private
* @since 1.0.0
* @return void
*/
private function includes() {
require_once WPEA_PLUGIN_DIR . 'includes/class-wp-event-aggregator-common.php';
require_once WPEA_PLUGIN_DIR . 'includes/class-wp-event-aggregator-list-table.php';
require_once WPEA_PLUGIN_DIR . 'includes/class-wp-event-aggregator-admin.php';
if( wpea_is_pro() ){
require_once WPEAPRO_PLUGIN_DIR . 'includes/class-wp-event-aggregator-manage-import.php';
}else{
require_once WPEA_PLUGIN_DIR . 'includes/class-wp-event-aggregator-manage-import.php';
}
if( !class_exists( 'Kigkonsult\Icalcreator\Vcalendar' ) ){
require_once WPEA_PLUGIN_DIR . 'includes/lib/icalcreator/autoload.php';
}
require_once WPEA_PLUGIN_DIR . 'includes/class-wp-event-aggregator-cpt.php';
require_once WPEA_PLUGIN_DIR . 'includes/class-wp-event-aggregator-eventbrite.php';
require_once WPEA_PLUGIN_DIR . 'includes/class-wp-event-aggregator-meetup.php';
require_once WPEA_PLUGIN_DIR . 'includes/class-wp-event-aggregator-facebook.php';
require_once WPEA_PLUGIN_DIR . 'includes/class-wp-event-aggregator-ical_parser.php';
require_once WPEA_PLUGIN_DIR . 'includes/class-wp-event-aggregator-ical_parser_aioec.php';
require_once WPEA_PLUGIN_DIR . 'includes/class-wp-event-aggregator-ical.php';
require_once WPEA_PLUGIN_DIR . 'includes/class-wp-event-aggregator-wpea.php';
require_once WPEA_PLUGIN_DIR . 'includes/class-wp-event-aggregator-tec.php';
require_once WPEA_PLUGIN_DIR . 'includes/class-wp-event-aggregator-em.php';
require_once WPEA_PLUGIN_DIR . 'includes/class-wp-event-aggregator-eventon.php';
require_once WPEA_PLUGIN_DIR . 'includes/class-wp-event-aggregator-event_organizer.php';
require_once WPEA_PLUGIN_DIR . 'includes/class-wp-event-aggregator-aioec.php';
require_once WPEA_PLUGIN_DIR . 'includes/class-wp-event-aggregator-my-calendar.php';
require_once WPEA_PLUGIN_DIR . 'includes/class-wp-event-aggregator-ee4.php';
require_once WPEA_PLUGIN_DIR . 'includes/class-wpea-plugin-deactivation.php';
require_once WPEA_PLUGIN_DIR . 'includes/class-wp-event-aggregator-api.php';
require_once WPEA_PLUGIN_DIR . 'includes/parsedown.php';
// Gutenberg Block
include_once WPEA_PLUGIN_DIR . 'blocks/wp-events/index.php';
}
/**
* Loads the plugin language files.
*
* @access public
* @since 1.0.0
* @return void
*/
public function load_textdomain(){
load_plugin_textdomain(
'wp-event-aggregator',
false,
basename( dirname( __FILE__ ) ) . '/languages'
);
}
/**
* WPEA setting And docs link add in plugin page.
*
* @since 1.0
* @return void
*/
public function wpea_setting_doc_links ( $links ) {
$wpea_setting_doc_link = array(
'wpea-event-setting' => sprintf(
'<a href="%s">%s</a>',
esc_url( admin_url( 'admin.php?page=import_events&tab=settings' ) ),
esc_html__( 'Setting', 'wp-event-aggregator' )
),
'wpea-event-docs' => sprintf(
'<a target="_blank" href="%s">%s</a>',
esc_url( 'https://docs.xylusthemes.com/docs/wp-event-aggregator/' ),
esc_html__( 'Docs', 'wp-event-aggregator' )
),
);
$upgrade_to_pro = array();
if( !wpea_is_pro() ){
$upgrade_to_pro = array( 'wpea-event-pro-link' => sprintf(
'<a href="%s" target="_blank" style="color:#1da867;font-weight: 900;">%s</a>',
esc_url( 'https://xylusthemes.com/plugins/wp-event-aggregator/' ),
esc_html__( 'Upgrade to Pro', 'wp-event-aggregator' )
) ) ;
}
return array_merge( $links, $wpea_setting_doc_link, $upgrade_to_pro );
}
/**
* Loads the facebook authorize class
*
* @access public
* @since 1.5
* @return void
*/
public function load_authorize_class(){
if( !class_exists( 'WP_Event_Aggregator_Pro_FB_Authorize', false ) ){
require_once WPEA_PLUGIN_DIR . 'includes/class-wp-event-aggregator-fb-authorize.php';
require_once WPEA_PLUGIN_DIR . 'includes/class-wp-event-aggregator-meetup-authorize.php';
global $importevents;
if( class_exists('WP_Event_Aggregator_FB_Authorize', false ) && !empty( $importevents ) ){
$importevents->fb_authorize = new WP_Event_Aggregator_FB_Authorize();
}
if( class_exists('WP_Event_Aggregator_Meetup_Authorize', false ) && !empty( $importevents ) ){
$importevents->meetup_authorize = new WP_Event_Aggregator_Meetup_Authorize();
}
}
}
/**
* enqueue style front-end
*
* @access public
* @since 1.0.0
* @return void
*/
public function wpea_enqueue_style() {
$css_dir = WPEA_PLUGIN_URL . 'assets/css/';
wp_enqueue_style('font-awesome', $css_dir . 'font-awesome.min.css', false, "" );
wp_enqueue_style('wp-event-aggregator-front', $css_dir . 'wp-event-aggregator.css', false, "" );
wp_enqueue_style('wp-event-aggregator-front-style2', $css_dir . 'grid-style2.css', false, WPEA_VERSION );
}
/**
* enqueue script front-end
*
* @access public
* @since 1.0.0
* @return void
*/
public function wpea_enqueue_script() {
// enqueue script here.
}
}
endif; // End If class exists check.
/**
* The main function for that returns WP_Event_Aggregator
*
* The main function responsible for returning the one true WP_Event_Aggregator
* Instance to functions everywhere.
*
* Use this function like you would a global variable, except without needing
* to declare the global.
*
* Example: <?php $importevents = xt_importevents(); ?>
*
* @since 1.0.0
* @return object|WP_Event_Aggregator The one true WP_Event_Aggregator Instance.
*/
function run_wp_event_aggregator() {
return WP_Event_Aggregator::instance();
}
/**
* Get Import events setting options
*
* @since 1.0
* @return void
*/
function wpea_get_import_options( $type = '' ){
$wpea_options = get_option( WPEA_OPTIONS );
if( $type != '' ){
$wpea_options = isset( $wpea_options[$type] ) ? $wpea_options[$type] : array();
}
return $wpea_options;
}
// Get WP_Event_Aggregator Running.
global $importevents, $wpea_errors, $wpea_success_msg, $wpea_warnings, $wpea_info_msg;
$importevents = run_wp_event_aggregator();
$wpea_errors = $wpea_warnings = $wpea_success_msg = $wpea_info_msg = array();
/**
* The code that runs during plugin activation.
*
* @since 1.1.2
*/
function wpea_activate_wp_event_aggregator() {
global $importevents;
$importevents->cpt->register_event_post_type();
flush_rewrite_rules();
}
register_activation_hook( __FILE__, 'wpea_activate_wp_event_aggregator' );