Skip to content
Snippets Groups Projects
civicrm.page.options.php 22.5 KiB
Newer Older
  • Learn to ignore specific revisions
  • Kevin Cristiano's avatar
    Kevin Cristiano committed
    <?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() {
    
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
        // Bail if CiviCRM is not installed.
        if (!CIVICRM_INSTALLED) {
          return;
        }
    
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
        // 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('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_email_sync', [$this, 'ajax_save_email_sync']);
        add_action('wp_ajax_civicrm_clear_caches', [$this, 'ajax_clear_caches']);
    
      }
    
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
      /**
       * 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 str The modified access capability.
         */
        return apply_filters('civicrm/admin/settings/cap', 'manage_options');
    
      }
    
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
      /**
       * Adds CiviCRM sub-menu items to WordPress admin menu.
       *
       * @since 5.34
       */
      public function add_menu_items() {
    
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
        // Get access capability.
        $capability = $this->access_capability();
    
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
        // Add Settings submenu item.
        $options_page = add_submenu_page(
          'CiviCRM',
          __('CiviCRM Settings for WordPress', 'civicrm'),
          __('Settings', 'civicrm'),
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
          $capability,
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
          $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'],
          CIVICRM_PLUGIN_VERSION
        );
    
        // Init settings and localisation array.
        $vars = [
          'settings' => [
            'ajax_url' => admin_url('admin-ajax.php'),
          ],
          'localisation' => [
            'saving' => __('Saving...', 'civicrm'),
            'saved' => __('Saved', 'civicrm'),
            'update' => __('Update', 'civicrm'),
            '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".
         *
         * @since 5.34
         *
         * @param str $screen_id The ID of the current screen.
         */
        do_action('add_meta_boxes', $screen->id, NULL);
    
        // 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;
        }
    
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
        // Bail if user cannot access the Settings Page.
        $capability = $this->access_capability();
        if (!current_user_can($capability)) {
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
    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 559 560 561 562 563 564 565 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 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 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 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 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 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877
          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 "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,
          'normal',
          '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 = NULL, $metabox) {
    
        // 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 -'),
        ];
    
        // 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.
         * @return array $options_post The modified 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 "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 = NULL, $metabox) {
    
        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.
         * @return array $options_post The modified 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';
    
      }
    
      /**
       * 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 = NULL, $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 = NULL, $metabox) {
    
        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.
         * @return array $admin_links The modified 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.
         * @return array $maintenance_links The modified 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() {
    
        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_email_post_submit'])) {
          // Save Email Sync.
          $this->form_nonce_check();
          $this->form_save_email_sync();
          $this->form_redirect();
        }
        elseif (!empty($_POST['civicrm_cache_submit'])) {
          // Clear caches.
          $this->form_nonce_check();
          $this->civi->admin->clear_caches();
          $this->form_redirect();
        }
    
      }
    
      /**
       * Save the CiviCRM Basepage Setting.
       *
       * @since 5.34
       */
      public function form_save_basepage() {
    
        // Bail if there's no valid Post ID.
        $post_id = empty($_POST['page_id']) ? 0 : (int) trim($_POST['page_id']);
        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 Email Sync Setting.
       *
       * @since 5.34
       */
      public function form_save_email_sync() {
    
        // Bail if there is no valid chosen value.
        $chosen = isset($_POST['sync_email']) ? trim($_POST['sync_email']) : 0;
        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
      // ---------------------------------------------------------------------------
    
      /**
       * Save the CiviCRM Basepage Setting.
       *
       * @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) trim($_POST['value']);
        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 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']) ? trim($_POST['value']) : 0;
        if ($chosen === 0) {
          $data['notice'] = __('Unrecognised parameter. Could not save the selected setting.', 'civicrm');
          wp_send_json($data);
        }
    
        // Setting is actually a boolean.
        $sync_email = $chosen === 'no' ? FALSE : TRUE;
    
        // Save the setting.
        civicrm_api3('Setting', 'create', [
          'syncCMSEmail' => $sync_email,
        ]);
    
        // 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' => 'syncCMSEmail',
          'group' => 'CiviCRM Preferences',
        ]);
    
        // Data response.
        $data = [
          'section' => 'email_sync',
          'result' => $actual ? 'yes' : 'no',
          'message' => __('Setting saved.', 'civicrm'),
          'saved' => TRUE,
        ];
    
        // Return the data.
        wp_send_json($data);
    
      }
    
      /**
       * Clear the CiviCRM caches.
       *
       * @since 5.34
       */
      public function ajax_clear_caches() {
    
        // Default response.
        $data = [
          'section' => 'clear_caches',
          'notice' => __('Could not clear the CiviCRM caches.', 'civicrm'),
          'saved' => FALSE,
        ];
    
        // Since this is an AJAX request, check security.
        $result = check_ajax_referer('civicrm_clear_caches', FALSE, FALSE);
        if ($result === FALSE) {
          $data['notice'] = __('Authentication failed. Could not clear the CiviCRM caches.', 'civicrm');
          wp_send_json($data);
        }
    
        // Bail if there is no valid value.
        $chosen = isset($_POST['value']) ? (int) trim($_POST['value']) : 0;
    
        if ($chosen !== 1) {
          $data['notice'] = __('Unrecognised parameter. Could not clear the CiviCRM caches.', 'civicrm');
          wp_send_json($data);
        }
    
        // Go ahead and clear the caches.
        $this->civi->admin->clear_caches();
    
        // Data response.
        $data = [
          'section' => 'clear_caches',
          'notice' => __('CiviCRM caches cleared.', 'civicrm'),
          'saved' => TRUE,
        ];
    
        // Return the data.
        wp_send_json($data);
    
      }
    
    }