Newer
Older
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
<?php
/*
+--------------------------------------------------------------------+
| Copyright CiviCRM LLC. All rights reserved. |
| |
| This work is published under the GNU AGPLv3 license with some |
| permitted exceptions and without any warranty. For full license |
| and copyright information, see https://civicrm.org/licensing |
+--------------------------------------------------------------------+
*/
/**
*
* @package CRM
* @copyright CiviCRM LLC https://civicrm.org/licensing
*
*/
// This file must not accessed directly.
if (!defined('ABSPATH')) {
exit;
}
/**
* Define CiviCRM_For_WordPress_Admin_Page_Options Class.
*
* @since 5.34
*/
class CiviCRM_For_WordPress_Admin_Page_Options {
/**
* @var object
* Plugin object reference.
* @since 5.34
* @access public
*/
public $civi;
/**
* @var object
* Admin object reference.
* @since 5.34
* @access public
*/
public $admin;
/**
* @var object
* Admin page slug.
* @since 5.34
* @access public
*/
public $slug = 'civi_options';
/**
* Instance constructor.
*
* @since 5.34
*/
public function __construct() {
// Bail if CiviCRM is not installed.
if (!CIVICRM_INSTALLED) {
return;
}
// Store reference to CiviCRM plugin object.
$this->civi = civi_wp();
// Store reference to admin object.
$this->admin = civi_wp()->admin;
// Wait for admin class to register hooks.
add_action('civicrm/admin/hooks/registered', [$this, 'register_hooks']);
}
/**
* Register hooks.
*
* @since 5.34
*/
public function register_hooks() {
// Add items to the CiviCRM admin menu.
add_action('admin_menu', [$this, 'add_menu_items'], 9);
// Add our meta boxes.
add_action('civicrm/page/options/add_meta_boxes', [$this, 'meta_boxes_options_add']);
// Add AJAX handlers.
add_action('wp_ajax_civicrm_basepage', [$this, 'ajax_save_basepage']);
add_action('wp_ajax_civicrm_shortcode', [$this, 'ajax_save_shortcode']);
add_action('wp_ajax_civicrm_email_sync', [$this, 'ajax_save_email_sync']);
add_action('wp_ajax_civicrm_refresh_permissions', [$this, 'ajax_refresh_permissions']);
add_action('wp_ajax_civicrm_clear_caches', [$this, 'ajax_clear_caches']);
}
/**
* Get the capability required to access the Settings Page.
*
* @since 5.37
*/
public function access_capability() {
/**
* Return default capability but allow overrides.
*
* @since 5.37
*
* @param str The default access capability.
*/
return apply_filters('civicrm/admin/settings/cap', 'manage_options');
}
/**
* Adds CiviCRM sub-menu items to WordPress admin menu.
*
* @since 5.34
*/
public function add_menu_items() {
if (!$this->civi->initialize()) {
return;
}
// Get access capability.
$capability = $this->access_capability();
// Add Settings submenu item.
$options_page = add_submenu_page(
'CiviCRM',
__('CiviCRM Settings for WordPress', 'civicrm'),
__('Settings', 'civicrm'),
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
$this->slug,
[$this, 'page_options']
);
// Register our form submit hander.
add_action('load-' . $options_page, [$this, 'form_submitted']);
// Add resources prior to page load.
add_action('admin_head-' . $options_page, [$this, 'admin_head']);
add_action('admin_print_styles-' . $options_page, [$this, 'admin_css']);
}
/**
* Enqueue scripts on the pages that need them.
*
* @since 5.34
*/
public function admin_head() {
// Enqueue WordPress scripts.
wp_enqueue_script('common');
wp_enqueue_script('jquery-ui-sortable');
wp_enqueue_script('dashboard');
// Enqueue Javascript.
wp_enqueue_script(
'civicrm-options-script',
CIVICRM_PLUGIN_URL . 'assets/js/civicrm.options.js',
['jquery'],
);
// Init settings and localisation array.
$vars = [
'settings' => [
'ajax_url' => admin_url('admin-ajax.php'),
],
'localisation' => [
'saving' => __('Saving...', 'civicrm'),
'saved' => __('Saved', 'civicrm'),
'refresh' => __('Refresh', 'civicrm'),
'refreshing' => __('Refreshing...', 'civicrm'),
'refreshed' => __('Refreshed', 'civicrm'),
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
'cache' => __('Clear Caches', 'civicrm'),
'clearing' => __('Clearing...', 'civicrm'),
'cleared' => __('Cleared', 'civicrm'),
],
];
// Localise the WordPress way.
wp_localize_script(
'civicrm-options-script',
'CiviCRM_Options_Vars',
$vars
);
}
/**
* Enqueue stylesheet on this page.
*
* @since 5.34
*/
public function admin_css() {
// Enqueue common CSS.
wp_enqueue_style(
'civicrm-admin-styles',
CIVICRM_PLUGIN_URL . 'assets/css/civicrm.admin.css',
NULL,
CIVICRM_PLUGIN_VERSION,
'all'
);
}
// ---------------------------------------------------------------------------
// Page Loader
// ---------------------------------------------------------------------------
/**
* Render the CiviCRM Settings page.
*
* @since 5.34
*/
public function page_options() {
// Get the current screen object.
$screen = get_current_screen();
/**
* Allow meta boxes to be added to this screen.
*
* The Screen ID to use is: "civicrm_page_cwps_settings".
*
* Used internally by:
*
* - self::meta_boxes_options_add()
*
* @since 5.34
*
* @param str $screen_id The ID of the current screen.
*/
do_action('civicrm/page/options/add_meta_boxes', $screen->id);
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
// Get the column CSS class.
$columns = absint($screen->get_columns());
$columns_css = '';
if ($columns) {
$columns_css = " columns-$columns";
}
// Include template file.
include CIVICRM_PLUGIN_DIR . 'assets/templates/pages/page.options.php';
}
/**
* Get the URL for the form action.
*
* @since 5.34
*
* @return string $target_url The URL for the admin form action.
*/
public function page_submit_url_get() {
// Our array of arguments.
$args = [
'page' => $this->slug,
];
// Sanitise admin page url.
$target_url = add_query_arg($args, admin_url('admin.php'));
// --<
return $target_url;
}
// ---------------------------------------------------------------------------
// Meta Box Loaders
// ---------------------------------------------------------------------------
/**
* Register Integration Page meta boxes.
*
* @since 5.34
*
* @param str $screen_id The Admin Page Screen ID.
*/
public function meta_boxes_options_add($screen_id) {
// Define valid Screen IDs.
$screen_ids = [
'civicrm_page_' . $this->slug,
];
// Bail if not the Screen ID we want.
if (!in_array($screen_id, $screen_ids)) {
return;
}
// Bail if user cannot access the Settings Page.
$capability = $this->access_capability();
if (!current_user_can($capability)) {
return;
}
// Init data.
$data = [];
// Create "WordPress Base Page" metabox.
add_meta_box(
'civicrm_options_basepage',
__('WordPress Base Page', 'civicrm'),
[$this, 'meta_box_options_basepage_render'],
$screen_id,
'normal',
'core',
$data
);
// Create "Shortcode Display Mode" metabox.
add_meta_box(
'civicrm_options_shortcode',
__('Shortcode Display Mode', 'civicrm'),
[$this, 'meta_box_options_shortcode_render'],
$screen_id,
'normal',
'core',
$data
);
// Create "Email Sync" metabox.
add_meta_box(
'civicrm_options_email',
__('Contact Email to User Email Sync', 'civicrm'),
[$this, 'meta_box_options_email_render'],
$screen_id,
'normal',
'core',
$data
);
// Create "Clear Cache" metabox.
add_meta_box(
'civicrm_options_cache',
__('Clear Caches', 'civicrm'),
[$this, 'meta_box_options_cache_render'],
$screen_id,
// Create "Permissions and Capabilities" metabox.
add_meta_box(
'civicrm_options_permissions',
__('Permissions and Capabilities', 'civicrm'),
[$this, 'meta_box_options_permissions_render'],
$screen_id,
'side',
'core',
$data
);
// Create "Useful Links" metabox.
add_meta_box(
'civicrm_options_emailinks',
__('Useful Links', 'civicrm'),
[$this, 'meta_box_options_links_render'],
$screen_id,
'side',
'core',
$data
);
}
// ---------------------------------------------------------------------------
// Meta Box Renderers
// ---------------------------------------------------------------------------
/**
* Render "WordPress Base Page" meta box.
*
* @since 5.34
*
* @param mixed $unused Unused param.
* @param array $metabox Array containing id, title, callback, and args elements.
*/
public function meta_box_options_basepage_render($unused, $metabox) {
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
// Get the setting.
$basepage_slug = civicrm_api3('Setting', 'getvalue', [
'name' => 'wpBasePage',
'group' => 'CiviCRM Preferences',
]);
// Did we get a value?
if (!empty($basepage_slug)) {
// Define the query for our Base Page.
$args = [
'post_type' => 'page',
'name' => strtolower($basepage_slug),
'post_status' => 'publish',
'posts_per_page' => 1,
];
// Do the query.
$pages = get_posts($args);
}
// Default error message.
$message = __('Could not find the WordPress Base Page.', 'civicrm');
// Find the Base Page object.
$basepage = NULL;
if (!empty($pages) && is_array($pages)) {
$basepage = array_pop($pages);
}
// Define the params for the Pages dropdown.
$params = [
'post_type' => 'page',
'sort_column' => 'menu_order, post_title',
'show_option_none' => __('- Select a Base Page -', 'civicrm'),
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
];
// If the Base Page is set, add its ID.
if ($basepage instanceof WP_Post) {
$params['selected'] = $basepage->ID;
}
// Determine whether the notice should be hidden.
$hidden = '';
if ($basepage instanceof WP_Post) {
$hidden = ' display: none;';
}
// Set AJAX submit button options.
$options_ajax = [
'style' => 'float: right;',
'data-security' => esc_attr(wp_create_nonce('civicrm_basepage')),
'disabled' => NULL,
];
// Set POST submit button options.
$options_post = [
'style' => 'float: right;',
];
/**
* Filters the Base Page POST submit button attributes.
*
* @since 5.34
*
* @param array $options_post The existing button attributes.
*/
$options_post = apply_filters('civicrm/metabox/basepage/submit/options', $options_post);
// Include template file.
include CIVICRM_PLUGIN_DIR . 'assets/templates/metaboxes/metabox.options.basepage.php';
}
/**
* Render "Shortcode" meta box.
*
* @since 5.44
*
* @param mixed $unused Unused param.
* @param array $metabox Array containing id, title, callback, and args elements.
*/
public function meta_box_options_shortcode_render($unused, $metabox) {
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
if (!$this->civi->initialize()) {
return;
}
// Get the Shortcode Mode setting.
$shortcode_mode = $this->civi->admin->get_shortcode_mode();
// Set selected attributes.
$selected_legacy = $shortcode_mode === 'legacy' ? 'selected="selected"' : '';
$selected_modern = $shortcode_mode === 'modern' ? 'selected="selected"' : '';
// Set AJAX submit button options.
$options_ajax = [
'style' => 'float: right;',
'data-security' => esc_attr(wp_create_nonce('civicrm_shortcode')),
'disabled' => NULL,
];
// Set POST submit button options.
$options_post = [
'style' => 'float: right;',
];
/**
* Filters the Shortcode POST submit button attributes.
*
* @since 5.44
*
* @param array $options_post The existing button attributes.
*/
$options_post = apply_filters('civicrm/metabox/shortcode/submit/options', $options_post);
// Include template file.
include CIVICRM_PLUGIN_DIR . 'assets/templates/metaboxes/metabox.options.shortcode.php';
}
/**
* Render "Contact Email to User Email Sync" meta box.
*
* @since 5.34
*
* @param mixed $unused Unused param.
* @param array $metabox Array containing id, title, callback, and args elements.
*/
public function meta_box_options_email_render($unused, $metabox) {
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
559
560
561
562
563
564
565
if (!$this->civi->initialize()) {
return;
}
// Get the setting.
$email_sync_select = civicrm_api3('Setting', 'getvalue', [
'name' => 'syncCMSEmail',
'group' => 'CiviCRM Preferences',
]);
// Set selected attributes.
$selected_yes = $email_sync_select ? 'selected="selected"' : '';
$selected_no = $email_sync_select ? '' : 'selected="selected"';
// Set AJAX submit button options.
$options_ajax = [
'style' => 'float: right;',
'data-security' => esc_attr(wp_create_nonce('civicrm_email_sync')),
'disabled' => NULL,
];
// Set POST submit button options.
$options_post = [
'style' => 'float: right;',
];
/**
* Filters the Email Sync POST submit button attributes.
*
* @since 5.34
*
* @param array $options_post The existing button attributes.
*/
$options_post = apply_filters('civicrm/metabox/email_sync/submit/options', $options_post);
// Include template file.
include CIVICRM_PLUGIN_DIR . 'assets/templates/metaboxes/metabox.options.email.php';
}
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
/**
* Render "Permissions" meta box.
*
* @since 5.52
*
* @param mixed $unused Unused param.
* @param array $metabox Array containing id, title, callback, and args elements.
*/
public function meta_box_options_permissions_render($unused, $metabox) {
// Get the custom role.
$custom_role = $this->civi->users->has_custom_role();
// Set selected attributes.
$selected_disable = empty($custom_role) ? 'selected="selected"' : '';
$selected_enable = !empty($custom_role) ? 'selected="selected"' : '';
// Set submit button options.
$options = [
'style' => 'float: right;',
'data-security' => esc_attr(wp_create_nonce('civicrm_refresh_permissions')),
];
// Include template file.
include CIVICRM_PLUGIN_DIR . 'assets/templates/metaboxes/metabox.options.permissions.php';
}
/**
* Render "Clear Cache" meta box.
*
* @since 5.34
*
* @param mixed $unused Unused param.
* @param array $metabox Array containing id, title, callback, and args elements.
*/
public function meta_box_options_cache_render($unused, $metabox) {
// Set submit button options.
$options = [
'style' => 'float: right;',
'data-security' => esc_attr(wp_create_nonce('civicrm_clear_caches')),
];
// Include template file.
include CIVICRM_PLUGIN_DIR . 'assets/templates/metaboxes/metabox.options.cache.php';
}
/**
* Render "Useful Links" meta box.
*
* @since 5.34
*
* @param mixed $unused Unused param.
* @param array $metabox Array containing id, title, callback, and args elements.
*/
public function meta_box_options_links_render($unused, $metabox) {
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
if (!$this->civi->initialize()) {
return;
}
// Construct an array of admin links.
$admin_links = [
'urls' => [
'url' => $this->civi->admin->get_admin_link('civicrm/admin/setting/url', 'reset=1'),
'text' => __('Settings - Resource URLs', 'civicrm'),
],
'uploads' => [
'url' => $this->civi->admin->get_admin_link('civicrm/admin/setting/path', 'reset=1'),
'text' => __('Settings - Upload Directories', 'civicrm'),
],
'permissions' => [
'url' => $this->civi->admin->get_admin_link('civicrm/admin/access/wp-permissions', 'reset=1'),
'text' => __('WordPress Access Control', 'civicrm'),
],
'extensions' => [
'url' => $this->civi->admin->get_admin_link('civicrm/admin/extensions', 'reset=1'),
'text' => __('CiviCRM Extensions', 'civicrm'),
],
];
/**
* Filters the admin links array.
*
* @since 5.34
*
* @param array $admin_links The default array of admin links.
*/
$admin_links = apply_filters('civicrm/metabox/links/admin', $admin_links);
// Construct an array of maintenance links.
$maintenance_links = [
'menu' => [
'url' => $this->civi->admin->get_admin_link('civicrm/menu/rebuild', 'reset=1'),
'text' => __('Rebuild the CiviCRM menu', 'civicrm'),
],
'triggers' => [
'url' => $this->civi->admin->get_admin_link('civicrm/menu/rebuild', 'reset=1&triggerRebuild=1'),
'text' => __('Rebuild the CiviCRM database triggers', 'civicrm'),
],
'upgrade' => [
'url' => $this->civi->admin->get_admin_link('civicrm/upgrade', 'reset=1'),
'text' => __('Upgrade CiviCRM', 'civicrm'),
'description' => __('Please note: you need to update the CiviCRM plugin directory first.', 'civicrm'),
],
];
/**
* Filters the maintenance links array.
*
* @since 5.34
*
* @param array $maintenance_links The default array of admin links.
*/
$maintenance_links = apply_filters('civicrm/metabox/links/maintenance', $maintenance_links);
// Include template file.
include CIVICRM_PLUGIN_DIR . 'assets/templates/metaboxes/metabox.options.links.php';
}
// ---------------------------------------------------------------------------
// Form Handlers
// ---------------------------------------------------------------------------
/**
* Perform actions when the form has been submitted.
*
* @since 5.34
*/
public function form_submitted() {
// Nonce is irrelevant at this stage.
// phpcs:disable WordPress.Security.NonceVerification.Recommended
// phpcs:disable WordPress.Security.NonceVerification.Missing
if (!empty($_POST['civicrm_basepage_post_submit'])) {
// Save Base Page.
$this->form_nonce_check();
$this->form_save_basepage();
$this->form_redirect();
}
elseif (!empty($_POST['civicrm_shortcode_post_submit'])) {
// Save Shortcode Mode.
$this->form_nonce_check();
$this->form_save_shortcode();
$this->form_redirect();
}
elseif (!empty($_POST['civicrm_email_post_submit'])) {
// Save Email Sync.
$this->form_nonce_check();
$this->form_save_email_sync();
$this->form_redirect();
}
elseif (!empty($_POST['civicrm_permissions_submit'])) {
// Refresh permissions.
$this->form_nonce_check();
$this->civi->users->refresh_capabilities();
$this->form_redirect();
}
elseif (!empty($_POST['civicrm_cache_submit'])) {
// Clear caches.
$this->form_nonce_check();
$this->civi->admin->clear_caches();
$this->form_redirect();
}
// phpcs:enable WordPress.Security.NonceVerification.Recommended
// phpcs:enable WordPress.Security.NonceVerification.Missing
// Nonce is checked in self::form_nonce_check().
// phpcs:disable WordPress.Security.NonceVerification.Missing
$post_id = empty($_POST['page_id']) ? 0 : (int) sanitize_text_field(wp_unslash($_POST['page_id']));
// phpcs:enable WordPress.Security.NonceVerification.Missing
if ($post_id === 0) {
return;
}
// Bail if we don't find a post object.
$post = get_post($post_id);
if (!($post instanceof WP_Post)) {
return;
}
// Save the setting.
civicrm_api3('Setting', 'create', [
'wpBasePage' => $post->post_name,
]);
}
/**
* Save the CiviCRM Shortcode Mode Setting.
*
* @since 5.44
*/
// Nonce is checked in self::form_nonce_check().
// phpcs:disable WordPress.Security.NonceVerification.Missing
$chosen = isset($_POST['shortcode_mode']) ? sanitize_text_field(wp_unslash($_POST['shortcode_mode'])) : 0;
// phpcs:enable WordPress.Security.NonceVerification.Missing
if ($chosen === 0 || !in_array($chosen, $this->civi->admin->get_shortcode_modes())) {
return;
}
// Save the setting.
update_option('shortcode_mode', $chosen);
}
/**
* Save the CiviCRM Email Sync Setting.
*
* @since 5.34
*/
// Nonce is checked in self::form_nonce_check().
// phpcs:disable WordPress.Security.NonceVerification.Missing
$chosen = isset($_POST['sync_email']) ? sanitize_text_field(wp_unslash($_POST['sync_email'])) : 0;
// phpcs:enable WordPress.Security.NonceVerification.Missing
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
if ($chosen === 0) {
return;
}
// Setting is actually a boolean.
$sync_email = $chosen === 'no' ? FALSE : TRUE;
// Save the setting.
civicrm_api3('Setting', 'create', [
'syncCMSEmail' => $sync_email,
]);
}
/**
* Check the nonce.
*
* @since 5.34
*/
private function form_nonce_check() {
// Do we trust the source of the data?
check_admin_referer('civicrm_options_form_action', 'civicrm_options_form_nonce');
}
/**
* Redirect to the Settings page with an extra param.
*
* @since 5.34
*/
private function form_redirect() {
// Our array of arguments.
$args = [
'page' => $this->slug,
'settings-updated' => 'true',
];
// Redirect to our admin page.
wp_safe_redirect(add_query_arg($args, admin_url('admin.php')));
}
// ---------------------------------------------------------------------------
// AJAX Handlers
// ---------------------------------------------------------------------------
/**
*
* @since 5.34
*/
public function ajax_save_basepage() {
// Default response.
$data = [
'section' => 'basepage',
'result' => '',
'notice' => __('Unable to save the WordPress Base Page.', 'civicrm'),
'message' => __('Please select a Page from the drop-down for CiviCRM to use as its Base Page. If CiviCRM was able to create one automatically, there should be one with the title "CiviCRM". If not, please select another suitable WordPress Page.', 'civicrm'),
'saved' => FALSE,
];
// Since this is an AJAX request, check security.
$result = check_ajax_referer('civicrm_basepage', FALSE, FALSE);
if ($result === FALSE) {
$data['notice'] = __('Authentication failed. Unable to save the WordPress Base Page.', 'civicrm');
wp_send_json($data);
}
// Bail if there's no valid Post ID.
$post_id = empty($_POST['value']) ? 0 : (int) sanitize_text_field(wp_unslash($_POST['value']));
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
if ($post_id === 0) {
$data['notice'] = __('No Page ID detected. Unable to save the WordPress Base Page.', 'civicrm');
wp_send_json($data);
}
// Bail if we don't find a post object.
$post = get_post($post_id);
if (!($post instanceof WP_Post)) {
$data['notice'] = __('Could not find selected Page. Unable to save the WordPress Base Page.', 'civicrm');
wp_send_json($data);
}
// Save the setting.
civicrm_api3('Setting', 'create', [
'wpBasePage' => $post->post_name,
]);
// Retrieve the setting in case hook callbacks have altered it.
// TODO: find out why this *doesn't* change when hooks *do* change it.
$actual = civicrm_api3('Setting', 'getvalue', [
'name' => 'wpBasePage',
'group' => 'CiviCRM Preferences',
]);
// Query for our Base Page.
$pages = get_posts([
'post_type' => 'page',
'name' => strtolower($actual),
'post_status' => 'publish',
'posts_per_page' => 1,
]);
// Bail if the Base Page was not found.
if (empty($pages) || !is_array($pages)) {
$data['notice'] = __('Could not get data for the selected Page.', 'civicrm');
wp_send_json($data);
}
// Grab what should be the only item.
$basepage = array_pop($pages);
// Data response.
$data = [
'section' => 'basepage',
'result' => $basepage->ID,
'message' => __('It appears that your Base Page has been set. Looking good.', 'civicrm'),
'saved' => TRUE,
];
// Return the data.
wp_send_json($data);
}
/**
* Save the CiviCRM Shortcode Mode Setting.
*
* @since 5.44
*/
public function ajax_save_shortcode() {
// Default response.
$data = [
'section' => 'shortcode',
'message' => __('Could not save the selected setting.', 'civicrm'),
'saved' => FALSE,
];
// Since this is an AJAX request, check security.
$result = check_ajax_referer('civicrm_shortcode', FALSE, FALSE);
if ($result === FALSE) {
$data['notice'] = __('Authentication failed. Could not save the selected setting.', 'civicrm');
wp_send_json($data);
}
// Bail if there is no valid chosen value.
$chosen = isset($_POST['value']) ? sanitize_text_field(wp_unslash($_POST['value'])) : 0;
if ($chosen === 0 || !in_array($chosen, $this->civi->admin->get_shortcode_modes())) {
$data['notice'] = __('Unrecognised parameter. Could not save the selected setting.', 'civicrm');
wp_send_json($data);
}
// Set the Shortcode Mode setting.
$this->civi->admin->set_shortcode_mode($chosen);
// Data response.
$data = [
'section' => 'shortcode',
'result' => $chosen,
'message' => __('Setting saved.', 'civicrm'),
'saved' => TRUE,
];
// Return the data.
wp_send_json($data);
}
/**
* Save the CiviCRM Email Sync Setting.
*
* @since 5.34
*/
public function ajax_save_email_sync() {
// Default response.
$data = [
'section' => 'email_sync',
'message' => __('Could not save the selected setting.', 'civicrm'),
'saved' => FALSE,
];
// Since this is an AJAX request, check security.
$result = check_ajax_referer('civicrm_email_sync', FALSE, FALSE);
if ($result === FALSE) {
$data['notice'] = __('Authentication failed. Could not save the selected setting.', 'civicrm');
wp_send_json($data);
}
// Bail if there is no valid chosen value.
$chosen = isset($_POST['value']) ? sanitize_text_field(wp_unslash($_POST['value'])) : 0;
if ($chosen === 0) {
$data['notice'] = __('Unrecognised parameter. Could not save the selected setting.', 'civicrm');
wp_send_json($data);
}