-
Notifications
You must be signed in to change notification settings - Fork 8
/
civicrm-event-organiser.php
538 lines (437 loc) · 12 KB
/
civicrm-event-organiser.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
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
<?php
/**
* CiviCRM Event Organiser
*
* Plugin Name: CiviCRM Event Organiser
* Description: Keeps Event Organiser plugin Events in sync with CiviCRM Events.
* Version: 0.8.0
* Plugin URI: https://github.com/christianwach/civicrm-event-organiser
* GitHub Plugin URI: https://github.com/christianwach/civicrm-event-organiser
* Author: Christian Wach
* Author URI: https://haystack.co.uk
* Requires at least: 4.9
* Requires PHP: 7.4
* License: GPLv2 or later
* License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* Text Domain: civicrm-event-organiser
* Domain Path: /languages
*
* @package CiviCRM_Event_Organiser
*/
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
// Set our version here.
define( 'CIVICRM_WP_EVENT_ORGANISER_VERSION', '0.8.0' );
// Store reference to this file.
if ( ! defined( 'CIVICRM_WP_EVENT_ORGANISER_FILE' ) ) {
define( 'CIVICRM_WP_EVENT_ORGANISER_FILE', __FILE__ );
}
// Store URL to this plugin's directory.
if ( ! defined( 'CIVICRM_WP_EVENT_ORGANISER_URL' ) ) {
define( 'CIVICRM_WP_EVENT_ORGANISER_URL', plugin_dir_url( CIVICRM_WP_EVENT_ORGANISER_FILE ) );
}
// Store PATH to this plugin's directory.
if ( ! defined( 'CIVICRM_WP_EVENT_ORGANISER_PATH' ) ) {
define( 'CIVICRM_WP_EVENT_ORGANISER_PATH', plugin_dir_path( CIVICRM_WP_EVENT_ORGANISER_FILE ) );
}
// Set debug constant.
if ( ! defined( 'CIVICRM_WP_EVENT_ORGANISER_DEBUG' ) ) {
define( 'CIVICRM_WP_EVENT_ORGANISER_DEBUG', false );
}
/**
* Plugin Class.
*
* A class that encapsulates this plugin's functionality.
*
* @since 0.1
*/
class CiviCRM_Event_Organiser {
/**
* CiviCRM object.
*
* @since 0.1
* @access public
* @var CEO_CiviCRM
*/
public $civi;
/**
* WordPress object.
*
* @since 0.8.0
* @access public
* @var CEO_WordPress
*/
public $wordpress;
/**
* Mapping object.
*
* @since 0.7
* @access public
* @var CEO_Mapping
*/
public $mapping;
/**
* Compatibility object.
*
* @since 0.8.0
* @access public
* @var CEO_Compat
*/
public $compat;
/**
* Admin object.
*
* @since 0.8.0
* @access public
* @var CEO_Admin
*/
public $admin;
/**
* Admin DB object.
*
* This is an "alias" of the Admin object for backpat purposes.
* Use `civicrm_eo()->admin->foo()` in future.
*
* @since 0.1
* @access public
* @var CEO_Admin_DB
*/
public $db;
/**
* Event Organiser object.
*
* This is an "alias" of the Event Organiser object for backpat purposes.
* Use `civicrm_eo()->wordpress->eo->foo()` in future.
*
* @since 0.1
* @access public
* @var CEO_WordPress_EO
*/
public $eo;
/**
* Event Organiser Venue object.
*
* This is an "alias" of the Event Organiser Venue object for backpat purposes.
* Use `civicrm_eo()->wordpress->eo_venue->foo()` in future.
*
* @since 0.1
* @access public
* @var CEO_WordPress_EO_Venue
*/
public $eo_venue;
/**
* Initialises this object.
*
* @since 0.1
*/
public function __construct() {
// Use translation files.
add_action( 'plugins_loaded', [ $this, 'enable_translation' ] );
// Initialise.
add_action( 'plugins_loaded', [ $this, 'initialise' ] );
}
/**
* Do stuff on plugin init.
*
* @since 0.1
*/
public function initialise() {
// Bail if Event Organiser plugin is not present.
if ( ! defined( 'EVENT_ORGANISER_VER' ) ) {
return;
}
// Bail if CiviCRM plugin is not present.
if ( ! function_exists( 'civi_wp' ) ) {
return;
}
// Bail if CiviCRM is not fully installed.
if ( ! defined( 'CIVICRM_INSTALLED' ) || ! CIVICRM_INSTALLED ) {
return false;
}
// Bootstrap plugin.
$this->include_files();
$this->setup_objects();
$this->register_hooks();
/**
* Fires when this plugin has fully loaded.
*
* @since 0.4.1
* @deprecated 0.8.0 Use the {@see 'ceo/loaded'} filter instead.
*/
do_action_deprecated( 'civicrm_wp_event_organiser_loaded', [], '0.8.0', 'ceo/loaded' );
/**
* Fires when this plugin has fully loaded.
*
* This action is used internally by this plugin to initialise its objects
* and ensures that all includes and setup has occurred beforehand.
*
* @since 0.8.0
*/
do_action( 'ceo/loaded' );
}
/**
* Include files.
*
* @since 0.4
*/
public function include_files() {
// Only do this once.
static $done;
if ( isset( $done ) && true === $done ) {
return;
}
// Load our core class files.
include CIVICRM_WP_EVENT_ORGANISER_PATH . 'includes/civicrm/class-civicrm.php';
include CIVICRM_WP_EVENT_ORGANISER_PATH . 'includes/wordpress/class-wordpress.php';
include CIVICRM_WP_EVENT_ORGANISER_PATH . 'includes/class-mapping.php';
include CIVICRM_WP_EVENT_ORGANISER_PATH . 'includes/compat/class-compat.php';
include CIVICRM_WP_EVENT_ORGANISER_PATH . 'includes/admin/class-admin.php';
// We're done.
$done = true;
}
/**
* Set up this plugin's objects.
*
* @since 0.4
*/
public function setup_objects() {
// Only do this once.
static $done;
if ( isset( $done ) && true === $done ) {
return;
}
// Initialise core objects.
$this->civi = new CEO_CiviCRM( $this );
$this->wordpress = new CEO_WordPress( $this );
$this->mapping = new CEO_Mapping( $this );
$this->compat = new CEO_Compat( $this );
$this->admin = new CEO_Admin( $this );
// The admin class needs an "alias" for backpat.
$this->db = $this->admin;
// We're done.
$done = true;
}
/**
* Register hooks.
*
* @since 0.8.0
*/
public function register_hooks() {
// Add settings link.
add_filter( 'network_admin_plugin_action_links', [ $this, 'plugin_action_links' ], 10, 2 );
add_filter( 'plugin_action_links', [ $this, 'plugin_action_links' ], 10, 2 );
}
/**
* Do stuff on plugin activation.
*
* @since 0.1
*/
public function activate() {
}
/**
* Do stuff on plugin deactivation.
*
* @since 0.1
*/
public function deactivate() {
}
// -----------------------------------------------------------------------------------
/**
* Load translation files.
*
* A good reference on how to implement translation in WordPress:
*
* @see http://ottopress.com/2012/internationalization-youre-probably-doing-it-wrong/
*
* @since 0.1
*/
public function enable_translation() {
// Load plugin translations.
// phpcs:ignore WordPress.WP.DeprecatedParameters.Load_plugin_textdomainParam2Found
load_plugin_textdomain(
'civicrm-event-organiser', // Unique name.
false, // Deprecated argument.
dirname( plugin_basename( __FILE__ ) ) . '/languages/' // Relative path to translation files.
);
}
// -----------------------------------------------------------------------------------
/**
* Check if this plugin is network activated.
*
* @since 0.7.1
*
* @return bool $is_network_active True if network activated, false otherwise.
*/
public function is_network_activated() {
// Only need to test once.
static $is_network_active;
// Have we done this already?
if ( isset( $is_network_active ) ) {
return $is_network_active;
}
// If not multisite, it cannot be.
if ( ! is_multisite() ) {
$is_network_active = false;
return $is_network_active;
}
// Make sure plugin file is included when outside admin.
if ( ! function_exists( 'is_plugin_active_for_network' ) ) {
require_once ABSPATH . '/wp-admin/includes/plugin.php';
}
// Get path from 'plugins' directory to this plugin.
$this_plugin = plugin_basename( CIVICRM_WP_EVENT_ORGANISER_FILE );
// Test if network active.
$is_network_active = is_plugin_active_for_network( $this_plugin );
// --<
return $is_network_active;
}
/**
* Check if CiviCRM is network activated.
*
* @since 0.7
*
* @return bool $civicrm_network_active True if network activated, false otherwise.
*/
public function is_civicrm_network_activated() {
// Only need to test once.
static $civicrm_network_active;
if ( isset( $civicrm_network_active ) ) {
return $civicrm_network_active;
}
// If not multisite, it cannot be.
if ( ! is_multisite() ) {
$civicrm_network_active = false;
return $civicrm_network_active;
}
// If CiviCRM's constant is not defined, we'll never know.
if ( ! defined( 'CIVICRM_PLUGIN_FILE' ) ) {
$civicrm_network_active = false;
return $civicrm_network_active;
}
// Make sure plugin file is included when outside admin.
if ( ! function_exists( 'is_plugin_active_for_network' ) ) {
require_once ABSPATH . '/wp-admin/includes/plugin.php';
}
// Get path from 'plugins' directory to CiviCRM's directory.
$civicrm = plugin_basename( CIVICRM_PLUGIN_FILE );
// Test if network active.
$civicrm_network_active = is_plugin_active_for_network( $civicrm );
// --<
return $civicrm_network_active;
}
/**
* Check if CiviCRM Admin Utilities is hiding CiviCRM except on main site.
*
* @since 0.7
*
* @return bool $civicrm_hidden True if CAU is hiding CiviCRM, false otherwise.
*/
public function is_civicrm_main_site_only() {
// Only need to test once.
static $civicrm_hidden;
if ( isset( $civicrm_hidden ) ) {
return $civicrm_hidden;
}
// If not multisite, it cannot be.
if ( ! is_multisite() ) {
$civicrm_hidden = false;
return $civicrm_hidden;
}
// Bail if CiviCRM is not network-activated.
if ( ! $this->is_civicrm_network_activated() ) {
$civicrm_hidden = false;
return $civicrm_hidden;
}
// If CAU's constant is not defined, we'll never know.
if ( ! defined( 'CIVICRM_ADMIN_UTILITIES_VERSION' ) ) {
$civicrm_hidden = false;
return $civicrm_hidden;
}
// Grab the CAU plugin reference.
$cau = civicrm_au();
// Bail if CAU's multisite object is not defined.
if ( empty( $cau->multisite ) ) {
$civicrm_hidden = false;
return $civicrm_hidden;
}
// Bail if not hidden.
if ( $cau->multisite->setting_get( 'main_site_only', '0' ) === '0' ) {
$civicrm_hidden = false;
return $civicrm_hidden;
}
// CAU is hiding CiviCRM.
$civicrm_hidden = true;
return $civicrm_hidden;
}
/**
* Utility to add link to settings page.
*
* @since 0.1
*
* @param array $links The existing links array.
* @param str $file The name of the plugin file.
* @return array $links The modified links array.
*/
public function plugin_action_links( $links, $file ) {
// Add settings link.
if ( plugin_basename( dirname( __FILE__ ) . '/civicrm-event-organiser.php' ) === $file ) {
// Add settings link.
$link = $this->admin->settings->page_settings_submit_url_get();
$links[] = '<a href="' . esc_url( $link ) . '">' . esc_html__( 'Settings', 'civicrm-event-organiser' ) . '</a>';
// Add Paypal link.
$paypal = 'https://www.paypal.me/interactivist';
$links[] = '<a href="' . esc_url( $paypal ) . '" target="_blank">' . esc_html__( 'Donate!', 'civicrm-event-organiser' ) . '</a>';
}
// --<
return $links;
}
/**
* Write to the error log.
*
* @since 0.8.0
*
* @param array $data The data to write to the log file.
*/
public function log_error( $data = [] ) {
// Skip if not debugging.
if ( CIVICRM_WP_EVENT_ORGANISER_DEBUG === false ) {
return;
}
// Skip if empty.
if ( empty( $data ) ) {
return;
}
// Format data.
// phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_print_r
$error = print_r( $data, true );
// Write to log file.
// phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log
error_log( $error );
}
}
/**
* Utility to get a reference to this plugin.
*
* @since 0.2.2
*
* @return CiviCRM_Event_Organiser $plugin The plugin reference.
*/
function civicrm_eo() {
// Return instance.
static $plugin;
// Instantiate plugin if not yet instantiated.
if ( ! isset( $plugin ) ) {
$plugin = new CiviCRM_Event_Organiser();
}
return $plugin;
}
// Bootstrap plugin.
civicrm_eo();
// Activation.
register_activation_hook( __FILE__, [ civicrm_eo(), 'activate' ] );
// Deactivation.
register_deactivation_hook( __FILE__, [ civicrm_eo(), 'deactivate' ] );
/*
* Uninstall uses the 'uninstall.php' method.
* @see https://developer.wordpress.org/reference/functions/register_uninstall_hook/
*/