This repository was archived by the owner on Nov 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathccb-gravity.php
More file actions
executable file
·558 lines (497 loc) · 15.3 KB
/
ccb-gravity.php
File metadata and controls
executable file
·558 lines (497 loc) · 15.3 KB
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
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
<?php
/**
* Plugin Name: CCB Gravity Functionality
* Plugin URI: http://www.liquidchurch.com/
* Description: CCB API and Gravity Form Integration
* Version: 1.0.0
* Author: Suraj Gupta, Dave Mackey (@davidshq), Liquid Church
* Author URI: http://www.liquidchurch.com/
* Donate link: http://www.liquidchurch.com/
* License: GPLv2
* Text Domain: ccb-gravity
* Domain Path: /languages
*
* @link http://www.liquidchurch.com/
*
* @package CCB Gravity
* @version 1.0.0
*/
/**
* Copyright (c) 2016-2017 Suraj Pr Gupta (email : suraj.gupta@scripterz.in)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2 or, at
* your discretion, any later version, as published by the Free
* Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
// Is this a Test Environment?
// Development = No
// Testing = Yes
if ( ! defined('CCB_ENV'))
{
define('CCB_ENV', 'development');
}
// Use composer to autoload.
require __DIR__ . '/vendor/autoload.php';
/**
* Main initiation class
*
* @since 1.0.0
*/
class CCB_GRAVITY_Functionality
{
/**
* Current Version Constant
*
* @var string
* @since 1.0.0
*/
const VERSION = '1.0.0';
/**
* CCB Community Group Leader ID Constant
*
* @var integer
* @since 1.0.0
*/
const CCB_COMMUNITY_GROUP_LEADER_ID = 35917; // TODO: Make this an option in Settings
/**
* Path of plugin directory
*
* @var string $path
* @since 1.0.0
*/
public static $path = '';
/**
* Singleton instance of plugin
*
* @var CCB_GRAVITY_Functionality $single_instance
* @since 1.0.0
*/
protected static $single_instance = NULL;
/**
* URL of plugin directory
*
* @var string $url
* @since 1.0.0
*/
protected $url = '';
/**
* Plugin basename
*
* This isn't currently utilized
*
* @var string $basename
* @since 1.0.0
*/
protected $basename = '';
/**
* Instance of CCB_GRAVITY_Config_Page
*
* Doesn't appear to be utilized currently.
*
* @since 1.0.0
* @var CCB_GRAVITY_Config_Page $config_page
*/
protected $config_page;
/**
* Gravity Mods
*
* @var $gravity_mods
*/
protected $gravity_mods;
/**
* Gravity Form Enabled CCB Services
*
* @var array $gform_enabled_ccb_services
* @since 0.1.0
*/
protected $gform_enabled_ccb_services = [
'individual_profile_from_login_password' => 'User Login Form',
'add_individual_to_event' => 'Add Individual to Event',
'create_individual' => 'Create Individual',
'add_individual_to_group' => 'Add Individual to Group',
];
/**
* Gravity Forms API Field Map
*
* @var array $gform_api_field_map
* @since 0.1.0
*/
protected $gform_api_field_map = [];
/**
* CCBravity Constructor
*
* Sets up our plugin
*
* @since 1.0.0
*/
protected function __construct()
{
$this->basename = plugin_basename(__FILE__);
$this->url = plugin_dir_url(__FILE__);
self::$path = plugin_dir_path(__FILE__);
$this->gform_api_field_map = [
'individual_profile_from_login_password' => CCB_GRAVITY_api_login::$link_api_fields,
'add_individual_to_event' => CCB_GRAVITY_api_add_to_event::$link_api_fields,
'create_individual' => CCB_GRAVITY_api_create_individual::$link_api_fields,
'add_individual_to_group' => CCB_GRAVITY_api_add_individual_to_group::$link_api_fields,
];
}
/**
* Creates or returns an instance of this class.
*
* @since 1.0.0
* @return CCB_GRAVITY_Functionality A single instance of this class.
*/
public static function get_instance()
{
if (NULL === self::$single_instance)
{
self::$single_instance = new self();
}
return self::$single_instance;
}
/**
* Include a file from the includes directory
*
* @since 1.0.0
*
* @param string $filename Name of the file to be included.
*
* @return bool Result of include call.
*/
public static function include_file($filename) // TODO: Is this actually used anywhere?
{
$file = self::dir($filename . '.php');
if (file_exists($file))
{
return include_once($file);
}
return FALSE;
} // END OF PLUGIN CLASSES FUNCTION
/**
* This plugin's directory
*
* @since 1.0.0
*
* @param string $path (optional) appended path.
*
* @return string Directory and path
*/
public static function dir($path = '') // TODO: Is this actually used anywhere?
{
static $dir;
$dir = $dir ? $dir : trailingslashit(dirname(__FILE__));
return $dir . $path;
}
/**
* Add hooks and filters
*
* @since 1.0.0
* @return void
*/
public function hooks()
{
if (class_exists("GFForms"))
{
// Register Repeating Field Functionality for Gravity Forms
new GFRepeater();
GF_Fields::register(new GF_Field_Repeater());
GF_Fields::register(new GF_Field_Repeater_End());
}
add_action('init', array($this, 'init'));
}
/**
* Activate the plugin
*
* @since 1.0.0
* @return void
*/
public function _activate()
{
// Make sure any rewrite functionality has been loaded.
flush_rewrite_rules();
}
/**
* Deactivate the plugin
* Uninstall routines should be in uninstall.php
*
* @since 1.0.0
* @return void
*/
public function _deactivate()
{
}
/**
* Init hooks
*
* @since 1.0.0
* @return void
*/
public function init()
{
if ($this->check_requirements())
{
load_plugin_textdomain('ccb-gravity', FALSE, dirname($this->basename) . '/languages/');
add_action('admin_menu', array($this, 'add_admin_menu_page'));
$this->plugin_classes();
$this->enque_script();
$this->enque_style();
}
}
/**
* Check if the plugin meets requirements and
* disable it if they are not present.
*
* @since 1.0.0
* @return boolean result of meets_requirements
*/
public function check_requirements()
{
if ( ! $this->meets_requirements())
{
// Add a dashboard notice.
add_action('all_admin_notices', array($this, 'requirements_not_met_notice'));
// Deactivate our plugin.
add_action('admin_init', array($this, 'deactivate_me'));
return FALSE;
}
return TRUE;
}
/**
* Check that all plugin requirements are met
*
* @since 1.0.0
* @return boolean True if requirements are met.
*/
public static function meets_requirements()
{
// Do checks for required classes / functions
// function_exists('') & class_exists('').
// We have met all requirements.
return class_exists('GFForms');
}
/**
* Attach other plugin classes to the base plugin class.
*
* @since 1.0.0
* @return void
*/
public function plugin_classes()
{
$this->add_dev_classes();
$this->config_page = CCB_GRAVITY_option_settings::get_instance();
$this->shortcode = new CCB_Shortcodes($this);
$this->session = new CCB_GRAVITY_manage_session($this);
$this->action = new CCB_GRAVITY_action_handler($this);
$this->action_ajax = new CCB_GRAVITY_ajax_handler($this);
$this->gravity_api_cron = new CCB_GRAVITY_cron_handler($this);
// Only create the full metabox object if in the admin.
if (is_admin())
{
$this->gravity_mods = new CCB_GRAVITY_form_mods($this);
}
else
{
$this->gravity_render = new CCB_GRAVITY_form_render($this);
$this->gravity_api_login = new CCB_GRAVITY_api_login($this);
$this->gravity_api_individual_groups = new CCB_GRAVITY_api_individual_groups($this);
}
$this->gravity_api_sync_ccb = new CCB_GRAVITY_api_sync_ccb($this);
$this->gravity_api_create_individual = new CCB_GRAVITY_api_create_individual($this);
$this->gravity_api_create_group = new CCB_GRAVITY_api_create_group($this);
$this->gravity_api_add_individual_to_group = new CCB_GRAVITY_api_add_individual_to_group($this);
$this->gravity_api_add_to_event = new CCB_GRAVITY_api_add_to_event($this);
$this->gravity_api_group_participants = new CCB_GRAVITY_api_group_participants($this);
$this->gravity_api_get_individual_profile = new CCB_GRAVITY_api_get_individual_profile($this);
$this->gravity_api_get_event_profile = new CCB_GRAVITY_api_event_profile($this);
$this->gravity_api_get_attendance_profile = new CCB_GRAVITY_api_attendance_profile($this);
$this->gravity_api_group_profile_from_id = new CCB_GRAVITY_api_group_profile_from_id($this);
}
/**
* Add Developer Classes
*
* These are classes that are only included if the environment has been set to development
*
*/
public function add_dev_classes()
{
if (defined('CCB_ENV') && CCB_ENV == 'development')
{
if (file_exists(__DIR__ . '/dev/WP_Logging.php'))
{
include __DIR__ . '/dev/WP_Logging.php';
}
}
include __DIR__ . '/dev/Logging_Mods.php';
}
/**
* Enqueue Our Scripts
*/
protected function enque_script() // TODO: Change to enqueue_script
{
$admin_page = rgget('page');
$min = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min';
if (in_array($admin_page, array('gf_edit_forms', 'gf_entries')))
{
wp_enqueue_script(
'ccb-blockui',
CCB_GRAVITY_Functionality::url("assets/node_modules/block-ui/jquery.blockUI{$min}.js"),
array('jquery'),
CCB_GRAVITY_Functionality::VERSION
);
wp_enqueue_script(
'ccb-gravity-admin',
CCB_GRAVITY_Functionality::url("assets/js/ccb-gravity-admin{$min}.js"),
array('jquery'),
CCB_GRAVITY_Functionality::VERSION
);
}
else if (in_array($admin_page, array('ccb_report')))
{
wp_enqueue_script(
'jquery-datatable',
'//cdn.datatables.net/1.10.13/js/jquery.dataTables.min.js', // TODO: Update to latest
array(),
CCB_GRAVITY_Functionality::VERSION
);
wp_enqueue_script(
'chart-js',
CCB_GRAVITY_Functionality::url("assets/bower_components/chart.js/dist/Chart.bundle{$min}.js"),
array(),
CCB_GRAVITY_Functionality::VERSION
);
}
}
/**
* This plugin's url
*
* @since 1.0.0
*
* @param string $path (optional) appended path.
*
* @return string URL and path
*/
public static function url($path = '')
{
static $url;
$url = $url ? $url : trailingslashit(plugin_dir_url(__FILE__));
return $url . $path;
}
/**
* Enqueue Styles
*/
protected function enque_style() // TODO: Change to enqueue_style
{
$admin_page = rgget('page');
$min = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min';
if (in_array($admin_page, array('gf_edit_forms', 'gf_entries')))
{
wp_enqueue_style(
'ccb-gravity-admin-css',
CCB_GRAVITY_Functionality::url("assets/css/ccb-gravity-admin{$min}.css"),
array(),
CCB_GRAVITY_Functionality::VERSION
);
}
else if (in_array($admin_page, array('ccb_report')))
{
wp_enqueue_style(
'jquery-datatable-css',
'//cdn.datatables.net/1.10.13/css/jquery.dataTables.min.css',
array(),
CCB_GRAVITY_Functionality::VERSION
);
}
}
/**
* admin menu pages for the plugin
*
* @since 1.0.0
* @return void
*/
public function add_admin_menu_page()
{
add_menu_page('CCB GRAVITY', __('CCB GRAVITY', 'ccb-gravity'), 'manage_options', 'ccb-gravity', array($this, 'page_ccb_gravity_index'));
}
/**
* What does this do?
*/
public function page_ccb_gravity_index()
{
echo 'page_ccb_gravity_index';
}
/**
* Deactivates this plugin, hook this function on admin_init.
*
* @since 1.0.0
* @return void
*/
public function deactivate_me()
{
deactivate_plugins($this->basename);
}
/**
* Adds a notice to the dashboard if the plugin requirements are not met
*
* @since 1.0.0
* @return void
*/
public function requirements_not_met_notice()
{
// Output our error.
echo '<div id="message" class="error">';
echo '<p>' . sprintf(__('CCB GRAVITY Functionality is missing the Gravity Form plugin and has been <a href="%s">deactivated</a>. Please make sure all requirements are available.', 'ccb-gravity'), admin_url('plugins.php')) . '</p>';
echo '</div>';
}
/**
* Magic getter for our object.
*
* @since 1.0.0
*
* @param string $field Field to get.
*
* @throws Exception Throws an exception if the field is invalid.
* @return mixed
*/
public function __get($field)
{
switch ($field)
{
case 'version':
return self::VERSION;
case 'basename':
case 'url':
case 'path':
case 'gform_enabled_ccb_services':
case 'gform_api_field_map':
return $this->{$field};
default:
throw new Exception('Invalid ' . __CLASS__ . ' property: ' . $field);
}
}
}
/**
* Grab the CCB_GRAVITY_Functionality object and return it.
* Wrapper for CCB_GRAVITY_Functionality::get_instance()
*
* @since 1.0.0
* @return CCB_GRAVITY_Functionality Singleton instance of plugin class.
*/
function ccb_gravity_func()
{
return CCB_GRAVITY_Functionality::get_instance();
}
// Kick it off.
add_action('plugins_loaded', array(ccb_gravity_func(), 'hooks'));
register_activation_hook(__FILE__, array(ccb_gravity_func(), '_activate'));
register_deactivation_hook(__FILE__, array(ccb_gravity_func(), '_deactivate'));