Skip to content
Snippets Groups Projects
civicrm.php 43.4 KiB
Newer Older
  • Learn to ignore specific revisions
  • Kevin Cristiano's avatar
    Kevin Cristiano committed
    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 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 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 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
    <?php
    /*
    Plugin Name: CiviCRM
    Description: CiviCRM - Growing and Sustaining Relationships
    Version: 4.7
    Author: CiviCRM LLC
    Author URI: http://civicrm.org/
    Plugin URI: http://wiki.civicrm.org/confluence/display/CRMDOC/WordPress+Installation+Guide+for+CiviCRM+4.7
    License: AGPL3
    Text Domain: civicrm
    Domain Path: /languages
    */
    
    
    /*
     +--------------------------------------------------------------------+
     | CiviCRM version 4.7                                                |
     +--------------------------------------------------------------------+
     | Copyright CiviCRM LLC (c) 2004-2015                                |
     +--------------------------------------------------------------------+
     | This file is a part of CiviCRM.                                    |
     |                                                                    |
     | CiviCRM is free software; you can copy, modify, and distribute it  |
     | under the terms of the GNU Affero General Public License           |
     | Version 3, 19 November 2007 and the CiviCRM Licensing Exception.   |
     |                                                                    |
     | CiviCRM 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 Affero General Public License for more details.        |
     |                                                                    |
     | You should have received a copy of the GNU Affero General Public   |
     | License and the CiviCRM Licensing Exception along                  |
     | with this program; if not, contact CiviCRM LLC                     |
     | at info[AT]civicrm[DOT]org. If you have questions about the        |
     | GNU Affero General Public License or the licensing of CiviCRM,     |
     | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
     +--------------------------------------------------------------------+
    */
    
    /**
     *
     * @package CRM
     * @copyright CiviCRM LLC (c) 2004-2015
     *
     */
    
    
    /*
    --------------------------------------------------------------------------------
    WordPress resources for developers
    --------------------------------------------------------------------------------
    Not that they're ever adhered to anywhere other than core, but people do their
    best to comply...
    
    WordPress core coding standards:
    http://make.wordpress.org/core/handbook/coding-standards/php/
    
    WordPress HTML standards:
    http://make.wordpress.org/core/handbook/coding-standards/html/
    
    WordPress JavaScript standards:
    http://make.wordpress.org/core/handbook/coding-standards/javascript/
    --------------------------------------------------------------------------------
    */
    
    
    // this file must not accessed directly
    if ( ! defined( 'ABSPATH' ) ) exit;
    
    
    // set version here: when it changes, will force JS to reload
    define( 'CIVICRM_PLUGIN_VERSION', '4.7' );
    
    // store reference to this file
    if (!defined('CIVICRM_PLUGIN_FILE')) {
      define( 'CIVICRM_PLUGIN_FILE', __FILE__ );
    }
    
    // store URL to this plugin's directory
    if (!defined( 'CIVICRM_PLUGIN_URL')) {
      define( 'CIVICRM_PLUGIN_URL', plugin_dir_url(CIVICRM_PLUGIN_FILE) );
    }
    
    // store PATH to this plugin's directory
    if (!defined( 'CIVICRM_PLUGIN_DIR')) {
      define( 'CIVICRM_PLUGIN_DIR', plugin_dir_path(CIVICRM_PLUGIN_FILE) );
    }
    
    // Test where the settings file exists, if in the 4.6 and prior location use that as CIVICRM_SETTINGS_PATH, otherwise set the new location as CIVICRM_SETTINGS_PATH
      $upload_dir    = wp_upload_dir();
      $wp_civi_settings = $upload_dir['basedir'] . DIRECTORY_SEPARATOR . 'civicrm' . DIRECTORY_SEPARATOR . 'civicrm.settings.php' ;
      $wp_civi_settings_deprectated = CIVICRM_PLUGIN_DIR . 'civicrm.settings.php';
    
    if (file_exists($wp_civi_settings_deprectated)) {
      define( 'CIVICRM_SETTINGS_PATH', $wp_civi_settings_deprectated );
    }
    else  {
      define( 'CIVICRM_SETTINGS_PATH', $wp_civi_settings );
    }
    
    // test if Civi is installed
    if ( file_exists( CIVICRM_SETTINGS_PATH )  ) {
        define( 'CIVICRM_INSTALLED', TRUE );
      } else {
        define( 'CIVICRM_INSTALLED', FALSE );
    }
    
    // prevent CiviCRM from rendering its own header
    define( 'CIVICRM_UF_HEAD', TRUE );
    
    
    /**
     * Define CiviCRM_For_WordPress Class
     */
    class CiviCRM_For_WordPress {
    
    
      /**
       * Declare our properties
       */
    
      /**
       * @var CiviCRM_For_WordPress
       */
      private static $instance;
    
      // plugin context (broad)
      static $in_wordpress;
    
      // plugin context (specific)
      static $context;
    
      /**
       * @var CiviCRM_For_WordPress_Shortcodes
       */
      public $shortcodes;
    
      /**
       * @var CiviCRM_For_WordPress_Shortcodes_Modal
       */
      public $modal;
    
      /**
       * @var CiviCRM_For_WordPress_Basepage
       */
      public $basepage;
    
      /**
       * @var CiviCRM_For_WordPress_Users
       */
      public $users;
    
    
      // ---------------------------------------------------------------------------
      // Setup
      // ---------------------------------------------------------------------------
    
    
      /**
       * Getter method which returns the CiviCRM instance and optionally creates one
       * if it does not already exist. Standard CiviCRM singleton pattern.
       *
       * @return object CiviCRM plugin instance
       */
      public static function singleton() {
    
        // if it doesn't already exist...
        if ( ! isset( self::$instance ) ) {
    
          // create it
          self::$instance = new CiviCRM_For_WordPress;
          self::$instance->setup_instance();
    
        }
    
        // return existing instance
        return self::$instance;
    
      }
    
    
      /**
       * Dummy instance constructor
       */
      function __construct() {}
    
      /**
       * Dummy magic method to prevent CiviCRM_For_WordPress from being cloned
       */
      public function __clone() {
        _doing_it_wrong( __FUNCTION__, __( 'Only one instance of CiviCRM_For_WordPress please', 'civicrm' ), '4.4' );
      }
    
      /**
       * Dummy magic method to prevent CiviCRM_For_WordPress from being unserialized
       */
      public function __wakeup() {
        _doing_it_wrong( __FUNCTION__, __( 'Please do not serialize CiviCRM_For_WordPress', 'civicrm' ), '4.4' );
      }
    
    
      /**
       * Method that is called only when CiviCRM plugin is activated
       * In order for other plugins to be able to interact with Civi's activation,
       * we wait until after the activation redirect to perform activation actions
       *
       * @return void
       */
      public function activate() {
    
        // set a one-time-only option
        add_option( 'civicrm_activation_in_progress', 'true' );
    
      }
    
    
      /**
       * Method that runs CiviCRM's plugin activation methods
       *
       * @return void
       */
      public function activation() {
    
        // if activating...
        if ( is_admin() && get_option( 'civicrm_activation_in_progress' ) == 'true' ) {
    
          // assign minimum capabilities for all WP roles and create 'anonymous_user' role
          $this->users->set_wp_user_capabilities();
    
          // set a one-time-only option to flag that we need to create a basepage -
          // it will not update the option once it has been set to another value nor
          // create a new option with the same name
          add_option( 'civicrm_activation_create_basepage', 'true' );
    
          // change option so this method never runs again
          update_option( 'civicrm_activation_in_progress', 'false' );
    
        }
    
        // if activating and we still haven't created the basepage...
        if (
          is_admin() &&
          get_option( 'civicrm_activation_create_basepage' ) == 'true' &&
          CIVICRM_INSTALLED
        ) {
    
          // create basepage
          add_action( 'wp_loaded', array( $this, 'create_wp_basepage' ) );
    
          // change option so this method never runs again
          update_option( 'civicrm_activation_create_basepage', 'done' );
    
        }
    
      }
    
    
      /**
       * Method that is called only when CiviCRM plugin is deactivated
       * In order for other plugins to be able to interact with Civi's activation,
       * we need to remove the option that is set in activate() above
       *
       * @return void
       */
      public function deactivate() {
    
        // delete options
        delete_option( 'civicrm_activation_in_progress' );
        delete_option( 'civicrm_activation_create_basepage' );
    
      }
    
    
      /**
       * Set up the CiviCRM plugin instance
       *
       * @return void
       */
      public function setup_instance() {
    
        // kick out if another instance is being inited
        if ( isset( self::$in_wordpress ) ) {
          wp_die( __( 'Only one instance of CiviCRM_For_WordPress please', 'civicrm' ) );
        }
    
        // Store context
        $this->civicrm_in_wordpress_set();
    
        // there is no session handling in WP hence we start it for CiviCRM pages
        if (!session_id()) {
          session_start();
        }
    
        if ( $this->civicrm_in_wordpress() ) {
          // this is required for AJAX calls in WordPress admin
          $_GET['noheader'] = TRUE;
        } else {
          $_GET['civicrm_install_type'] = 'wordpress';
        }
    
        // get classes and instantiate
        $this->include_files();
    
        // do plugin activation
        $this->activation();
    
        // register all hooks
        $this->register_hooks();
    
        // notify plugins
        do_action( 'civicrm_instance_loaded' );
    
      }
    
    
      /**
       * Setter for determining if CiviCRM is currently being displayed in WordPress.
       * This becomes true whe CiviCRM is called in the following contexts:
       *
       * (a) in the WordPress back-end
       * (b) when CiviCRM content is being displayed on the front-end via wpBasePage
       * (c) when an AJAX request is made to CiviCRM
       *
       * It is NOT true when CiviCRM is called via a shortcode
       *
       * @return void
       */
      public function civicrm_in_wordpress_set() {
    
        // store
        self::$in_wordpress = ( isset( $_GET['page'] ) && $_GET['page'] == 'CiviCRM' ) ? TRUE : FALSE;
    
      }
    
    
      /**
       * Getter for testing if CiviCRM is currently being displayed in WordPress.
       *
       * @see $this->civicrm_in_wordpress_set()
       *
       * @return bool $in_wordpress True if Civi is displayed in WordPress, false otherwise
       */
      public function civicrm_in_wordpress() {
    
        // already stored
        return apply_filters( 'civicrm_in_wordpress', self::$in_wordpress );
    
      }
    
    
      /**
       * Setter for determining how CiviCRM is currently being displayed in WordPress.
       * This can be one of the following contexts:
       *
       * (a) in the WordPress back-end
       * (b) when CiviCRM content is being displayed on the front-end via wpBasePage
       * (c) when a "non-page" request is made to CiviCRM
       * (d) when CiviCRM is called via a shortcode
       *
       * The following codes correspond to the different contexts
       *
       * (a) 'admin'
       * (b) 'basepage'
       * (c) 'nonpage'
       * (d) 'shortcode'
       *
       * @param string $context
       *   One of the four context codes above
       * @return void
       */
      public function civicrm_context_set( $context ) {
    
        // store
        self::$context = $context;
    
      }
    
    
      /**
       * Getter for determining how CiviCRM is currently being displayed in WordPress.
       *
       * @see $this->civicrm_context_set()
       *
       * @return string
       *   The context in which Civi is displayed in WordPress
       */
      public function civicrm_context_get() {
    
        // already stored
        return apply_filters( 'civicrm_context', self::$context );
    
      }
    
    
      // ---------------------------------------------------------------------------
      // Files
      // ---------------------------------------------------------------------------
    
    
      /**
       * Include files
       *
       * @return void
       */
      public function include_files() {
    
        // include users class
        include_once CIVICRM_PLUGIN_DIR . 'includes/civicrm.users.php';
        $this->users = new CiviCRM_For_WordPress_Users;
    
        // include shortcodes class
        include_once CIVICRM_PLUGIN_DIR . 'includes/civicrm.shortcodes.php';
        $this->shortcodes = new CiviCRM_For_WordPress_Shortcodes;
    
        // include shortcodes modal dialog class
        include_once CIVICRM_PLUGIN_DIR . 'includes/civicrm.shortcodes.modal.php';
        $this->modal = new CiviCRM_For_WordPress_Shortcodes_Modal;
    
        // include basepage class
        include_once CIVICRM_PLUGIN_DIR . 'includes/civicrm.basepage.php';
        $this->basepage = new CiviCRM_For_WordPress_Basepage;
    
      }
    
    
      // ---------------------------------------------------------------------------
      // Hooks
      // ---------------------------------------------------------------------------
    
    
      /**
       * Register hooks
       *
       * @return void
       */
      public function register_hooks() {
    
        // always add the common hooks
        $this->register_hooks_common();
    
        // when in WordPress admin...
        if ( is_admin() ) {
    
          // set context
          $this->civicrm_context_set( 'admin' );
    
          // handle WP admin context
          $this->register_hooks_admin();
          return;
    
        }
    
        // go no further if Civi not installed yet
        if ( ! CIVICRM_INSTALLED ) return;
    
        // when embedded via wpBasePage or AJAX call...
        if ( $this->civicrm_in_wordpress() ) {
    
          /**
           * Directly output CiviCRM html only in a few cases and skip WP templating:
           *
           * (a) when a snippet is set
           * (b) when there is an AJAX call
           * (c) for an iCal feed (unless 'html' is specified)
           * (d) for file download URLs
           */
          if ( ! $this->is_page_request() ) {
    
            // set context
            $this->civicrm_context_set( 'nonpage' );
    
            // add core resources for front end
            add_action( 'wp', array( $this, 'front_end_page_load' ) );
    
            // echo all output when WP has been set up but nothing has been rendered
            add_action( 'wp', array( $this, 'invoke' ) );
            return;
    
          }
    
          // set context
          $this->civicrm_context_set( 'basepage' );
    
          // if we get here, we must be in a wpBasePage context
          $this->basepage->register_hooks();
          return;
    
        }
    
        // set context
        $this->civicrm_context_set( 'shortcode' );
    
        // that leaves us with handling shortcodes, should they exist
        $this->shortcodes->register_hooks();
    
      }
    
    
      /**
       * Register hooks that must always be present
       *
       * @return void
       */
      public function register_hooks_common() {
    
        // use translation files
        add_action( 'plugins_loaded', array( $this, 'enable_translation' ) );
    
        // register user hooks
        $this->users->register_hooks();
    
      }
    
    
      /**
       * Register hooks to handle CiviCRM in a WordPress admin context
       *
       * @return void
       */
      public function register_hooks_admin() {
    
        // modify the admin menu
        add_action( 'admin_menu', array( $this, 'add_menu_items' ) );
    
        // set page title
        add_filter( 'admin_title', array( $this, 'set_admin_title' ) );
    
        // print CiviCRM's header
        add_action('admin_head', array( $this, 'wp_head' ), 50);
    
        // if settings file does not exist, show notice with link to installer
        if ( ! CIVICRM_INSTALLED ) {
          if ( isset( $_GET['page'] ) && $_GET['page'] == 'civicrm-install' ) {
            // register hooks for installer page?
          } else {
            // show notice
            add_action( 'admin_notices', array( $this, 'show_setup_warning' ) );
          }
        }
    
        // enable shortcode modal
        $this->modal->register_hooks();
    
      }
    
    
      // ---------------------------------------------------------------------------
      // CiviCRM Initialisation
      // ---------------------------------------------------------------------------
    
    
      /**
       * Initialize CiviCRM
       *
       * @return bool $success
       */
      public function initialize() {
    
        static $initialized = FALSE;
        static $failure = FALSE;
    
        if ( $failure ) {
          return FALSE;
        }
    
        if ( ! $initialized ) {
    
          // Check for php version and ensure its greater than minPhpVersion
          $minPhpVersion = '5.3.4';
          if ( version_compare( PHP_VERSION, $minPhpVersion ) < 0 ) {
            echo '<p>' .
               sprintf(
                __( 'CiviCRM requires PHP Version %s or greater. You are running PHP Version %s', 'civicrm' ),
                $minPhpVersion,
                PHP_VERSION
               ) .
               '<p>';
            exit();
          }
    
          // check for settings
          if ( ! CIVICRM_INSTALLED ) {
            $error = FALSE;
          } elseif ( file_exists( CIVICRM_SETTINGS_PATH) ) {
            $error = include_once ( CIVICRM_SETTINGS_PATH );
          }
    
          // autoload
          require_once 'CRM/Core/ClassLoader.php';
          CRM_Core_ClassLoader::singleton()->register();
    
          // get ready for problems
          $installLink    = admin_url() . "options-general.php?page=civicrm-install";
          $docLinkInstall = "http://wiki.civicrm.org/confluence/display/CRMDOC/WordPress+Installation+Guide";
          $docLinkTrouble = "http://wiki.civicrm.org/confluence/display/CRMDOC/Installation+and+Configuration+Trouble-shooting";
          $forumLink      = "http://forum.civicrm.org/index.php/board,6.0.html";
    
    
          // construct message
          $errorMsgAdd = sprintf(
            __( 'Please review the <a href="%s">WordPress Installation Guide</a> and the <a href="%s">Trouble-shooting page</a> for assistance. If you still need help installing, you can often find solutions to your issue by searching for the error message in the <a href="%s">installation support section of the community forum</a>.', 'civicrm' ),
            $docLinkInstall,
            $docLinkTrouble,
            $forumLink
          );
    
          // does install message get used?
          $installMessage = sprintf(
            __( 'Click <a href="%s">here</a> for fresh install.', 'civicrm' ),
            $installLink
          );
    
          if ($error == FALSE) {
            header( 'Location: ' . admin_url() . 'options-general.php?page=civicrm-install' );
            return FALSE;
          }
    
          // access global defined in civicrm.settings.php
          global $civicrm_root;
    
          // this does pretty much all of the civicrm initialization
          if ( ! file_exists( $civicrm_root . 'CRM/Core/Config.php' ) ) {
            $error = FALSE;
          } else {
            $error = include_once ( 'CRM/Core/Config.php' );
          }
    
          // have we got it?
          if ( $error == FALSE ) {
    
            // set static flag
            $failure = TRUE;
    
            // FIX ME - why?
            wp_die(
              "<strong><p class='error'>" .
              sprintf(
                __( 'Oops! - The path for including CiviCRM code files is not set properly. Most likely there is an error in the <em>civicrm_root</em> setting in your CiviCRM settings file (%s).', 'civicrm' ),
                CIVICRM_SETTINGS_PATH
              ) .
              "</p><p class='error'> &raquo; " .
              sprintf(
                __( 'civicrm_root is currently set to: <em>%s</em>.', 'civicrm' ),
                $civicrm_root
              ) .
              "</p><p class='error'>" . $errorMsgAdd . "</p></strong>"
            );
    
            // won't reach here!
            return FALSE;
    
          }
    
          // set static flag
          $initialized = TRUE;
    
          // initialize the system by creating a config object
          $config = CRM_Core_Config::singleton();
          //print_r( $config ); die();
    
          // sync the logged in user with WP
          global $current_user;
          if ( $current_user ) {
    
            // sync procedure sets session values for logged in users
            require_once 'CRM/Core/BAO/UFMatch.php';
            CRM_Core_BAO_UFMatch::synchronize(
              $current_user, // user object
              FALSE, // do not update
              'WordPress', // CMS
              $this->users->get_civicrm_contact_type('Individual')
            );
    
          }
    
        }
    
        // notify plugins
        do_action( 'civicrm_initialized' );
    
        // success!
        return TRUE;
    
      }
    
    
      // ---------------------------------------------------------------------------
      // Plugin setup
      // ---------------------------------------------------------------------------
    
    
      /**
       * Load translation files
       * A good reference on how to implement translation in WordPress:
       * http://ottopress.com/2012/internationalization-youre-probably-doing-it-wrong/
       *
       * @return void
       */
      public function enable_translation() {
    
        // not used, as there are no translations as yet
        load_plugin_textdomain(
    
          // unique name
          'civicrm',
    
          // deprecated argument
          FALSE,
    
          // relative path to directory containing translation files
          dirname( plugin_basename( __FILE__ ) ) . '/languages/'
    
        );
    
      }
    
    
      /**
       * Adds menu items to WordPress admin menu
       * Callback method for 'admin_menu' hook as set in register_hooks()
       *
       * @return void
       */
      public function add_menu_items() {
    
        // check for settings file
        if ( CIVICRM_INSTALLED ) {
    
          // use plugins_url( 'path/to/file.png', __FILE__ )
          // see http://codex.wordpress.org/Function_Reference/plugins_url
          // NB: given that URLs always use /, I see no need for DIR_SEP
          $civilogo = plugins_url(
            'civicrm/i/logo16px.png',
            __FILE__
          );
    
          // add top level menu item
          $menu_page = add_menu_page(
            __( 'CiviCRM', 'civicrm' ),
            __( 'CiviCRM', 'civicrm' ),
            'access_civicrm',
            'CiviCRM',
            array( $this, 'invoke' ),
            $civilogo,
            apply_filters( 'civicrm_menu_item_position', '3.904981' ) // 3.9 + random digits to reduce risk of conflict
          );
    
          // add core resources prior to page load
          add_action( 'load-' . $menu_page, array( $this, 'admin_page_load' ) );
    
        } else {
    
          $civilogo = plugins_url(
            'civicrm/i/logo16px.png',
            __FILE__
          );
    
          // add top level menu item
          $menu_page = add_menu_page(
            __( 'CiviCRM Installer', 'civicrm' ),
            __( 'CiviCRM Installer', 'civicrm' ),
            'manage_options',
            'civicrm-install',
            array( $this, 'run_installer' ),
            $civilogo,
            apply_filters( 'civicrm_menu_item_position', '3.904981' ) // 3.9 + random digits to reduce risk of conflict
          );
    
          /*
          // add scripts and styles like this
          add_action( 'admin_print_scripts-' . $options_page, array( $this, 'admin_installer_js' ) );
          add_action( 'admin_print_styles-' . $options_page, array( $this, 'admin_installer_css' ) );
          add_action( 'admin_head-' . $options_page, array( $this, 'admin_installer_head' ), 50 );
          */
    
        }
    
      }
    
    
      // ---------------------------------------------------------------------------
      // Installation
      // ---------------------------------------------------------------------------
    
    
      /**
       * Callback method for add_options_page() that runs the CiviCRM installer
       *
       * @return void
       */
      public function run_installer() {
    
        // uses CIVICRM_PLUGIN_DIR instead of WP_PLUGIN_DIR
        $installFile =
          CIVICRM_PLUGIN_DIR .
          'civicrm' . DIRECTORY_SEPARATOR .
          'install' . DIRECTORY_SEPARATOR .
          'index.php';
    
        // Notice: Undefined variable: siteDir in:
        // CIVICRM_PLUGIN_DIR/civicrm/install/index.php on line 456
        include ( $installFile );
    
      }
    
    
      /**
       * Callback method for missing settings file in register_hooks()
       *
       * @return void
       */
      public function show_setup_warning() {
    
        $installLink = admin_url() . "options-general.php?page=civicrm-install";
        echo '<div id="civicrm-warning" class="updated fade">' .
           '<p><strong>' .
           __( 'CiviCRM is almost ready.', 'civicrm' ) .
           '</strong> ' .
           sprintf(
            __( 'You must <a href="%s">configure CiviCRM</a> for it to work.', 'civicrm' ),
            $installLink
           ) .
           '</p></div>';
    
      }
    
    
      /**
       * Create WordPress basepage and save setting
       *
       * @return void
       */
      public function create_wp_basepage() {
    
        if (!$this->initialize()) {
          return;
        }
    
        $config = CRM_Core_Config::singleton();
    
        // bail if we already have a basepage setting
        if ( !empty( $config->wpBasePage ) ) {
          return;
        }
    
        // default page slug, but allow overrides
        $slug = apply_filters( 'civicrm_basepage_slug', 'civicrm' );
    
        // get existing page with that slug
        $page = get_page_by_path( $slug );
    
        // does it exist?
        if ( $page ) {
    
          // we already have a basepage
          $result = $page->ID;
    
        } else {
    
          // create the basepage
          $result = $this->create_basepage( $slug );
    
        }
    
        // were we successful?
        if ( $result !== 0 AND !is_wp_error($result) ) {
    
          // get the post object
          $post = get_post( $result );
    
          $params = array(
            'version' => 3,
            'wpBasePage' => $post->post_name,
          );
    
          // save the setting
          civicrm_api3('setting', 'create', $params);
    
        }
    
      }
    
    
      /**
       * Create a WordPress page to act as the CiviCRM base page.
       *
       * @param string $slug The unique slug for the page - same as wpBasePage setting
       * @return int|WP_Error The page ID on success. The value 0 or WP_Error on failure
       */
      private function create_basepage( $slug ) {
    
        // if multisite, switch to main site
        if ( is_multisite() && !is_main_site() ) {
    
          // store this site
          $original_site = get_current_blog_id();
    
          // switch
          global $current_site;
          switch_to_blog( $current_site->blog_id );
    
        }
    
        // define basepage
        $page = array(
          'post_status' => 'publish',
          'post_type' => 'page',
          'post_parent' => 0,
          'comment_status' => 'closed',
          'ping_status' => 'closed',
          'to_ping' => '', // quick fix for Windows
          'pinged' => '', // quick fix for Windows
          'post_content_filtered' => '', // quick fix for Windows
          'post_excerpt' => '', // quick fix for Windows
          'menu_order' => 0,
          'post_name' => $slug,
        );
    
        // default page title, but allow overrides
        $page['post_title'] = apply_filters( 'civicrm_basepage_title', __( 'CiviCRM', 'civicrm' ) );
    
        // default content
        $content = __( 'Do not delete this page. Page content is generated by CiviCRM.', 'civicrm' );
    
        // set, but allow overrides
        $page['post_content'] = apply_filters( 'civicrm_basepage_content', $content );
    
        // insert the post into the database
        $page_id = wp_insert_post( $page );
    
        // switch back if we've switched
        if ( isset( $original_site ) ) {
          restore_current_blog();
        }
    
        return $page_id;
      }
    
    
      // ---------------------------------------------------------------------------
      // HTML head
      // ---------------------------------------------------------------------------
    
    
      /**
       * Perform necessary stuff prior to CiviCRM's admin page being loaded
       * This needs to be a method because it can then be hooked into WP at the
       * right time
       *
       * @return void
       */
      public function admin_page_load() {
    
        // add resources for back end
        $this->add_core_resources( FALSE );
    
        // check setting for path to wp-load.php
        $this->add_wpload_setting();
    
      }
    
    
      /**
       * When CiviCRM is loaded in WP Admin, check for the existence of a setting
       * which holds the path to wp-load.php. This is the only reliable way to
       * bootstrap WordPress from CiviCRM.
       *
       * CMW: I'm not entirely happy with this approach, because the value will be
       * different for different installs (e.g. when a dev site is migrated to live)
       * A better approach would be to store this setting in civicrm.settings.php as
       * a constant, but doing that involves a complicated process of getting a new
       * setting registered in the installer.
       *
       * Also, it needs to be decided whether this value should be tied to a CiviCRM
       * 'domain', since a single CiviCRM install could potentially be used by a
       * number of WordPress installs. This is not relevant to its use in WordPress
       * Multisite, because the path to wp-load.php is common to all sites on the
       * network.
       *
       * My final concern is that the value will only be set *after* someone visits
       * CiviCRM in the back end. I have restricted it to this so as not to add
       * overhead to the front end, but there remains the possibility that the value
       * could be missing. To repeat: this would be better in civicrm.settings.php.
       *
       * To get the path to wp-load.php, use:
       * $path = CRM_Core_BAO_Setting::getItem('CiviCRM Preferences', 'wpLoadPhp');
       *
       * @return void
       */
      public function add_wpload_setting() {
    
        if (!$this->initialize()) {
          return;
        }
    
        // get path to wp-load.php
        $path = ABSPATH . 'wp-load.php';
    
        // get the setting, if it exists