Skip to content
Snippets Groups Projects
civicrm.php 51.2 KiB
Newer Older
Kevin Cristiano's avatar
Kevin Cristiano committed
<?php
/*
Plugin Name: CiviCRM
Description: CiviCRM - Growing and Sustaining Relationships
Kevin Cristiano's avatar
Kevin Cristiano committed
Version: 5.15.0
Kevin Cristiano's avatar
Kevin Cristiano committed
Author: CiviCRM LLC
Author URI: https://civicrm.org/
Plugin URI: https://wiki.civicrm.org/confluence/display/CRMDOC/Installing+CiviCRM+for+WordPress
Kevin Cristiano's avatar
Kevin Cristiano committed
License: AGPL3
Text Domain: civicrm
Domain Path: /languages
*/


/*
 +--------------------------------------------------------------------+
Kevin Cristiano's avatar
Kevin Cristiano committed
 | CiviCRM version 5                                                  |
Kevin Cristiano's avatar
Kevin Cristiano committed
 +--------------------------------------------------------------------+
Kevin Cristiano's avatar
Kevin Cristiano committed
 | Copyright CiviCRM LLC (c) 2004-2019                                |
Kevin Cristiano's avatar
Kevin Cristiano committed
 +--------------------------------------------------------------------+
 | 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
Kevin Cristiano's avatar
Kevin Cristiano committed
 * @copyright CiviCRM LLC (c) 2004-2019
Kevin Cristiano's avatar
Kevin Cristiano committed
 *
 */


/*
--------------------------------------------------------------------------------
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/
--------------------------------------------------------------------------------
*/


Kevin Cristiano's avatar
Kevin Cristiano committed
// This file must not accessed directly
Kevin Cristiano's avatar
Kevin Cristiano committed
if ( ! defined( 'ABSPATH' ) ) exit;


Kevin Cristiano's avatar
Kevin Cristiano committed
// Set version here: when it changes, will force JS to reload
define( 'CIVICRM_PLUGIN_VERSION', '4.7' );
Kevin Cristiano's avatar
Kevin Cristiano committed

Kevin Cristiano's avatar
Kevin Cristiano committed
// Store reference to this file
Kevin Cristiano's avatar
Kevin Cristiano committed
if (!defined('CIVICRM_PLUGIN_FILE')) {
  define( 'CIVICRM_PLUGIN_FILE', __FILE__ );
}

Kevin Cristiano's avatar
Kevin Cristiano committed
// Store URL to this plugin's directory
Kevin Cristiano's avatar
Kevin Cristiano committed
if (!defined( 'CIVICRM_PLUGIN_URL')) {
  define( 'CIVICRM_PLUGIN_URL', plugin_dir_url(CIVICRM_PLUGIN_FILE) );
}

Kevin Cristiano's avatar
Kevin Cristiano committed
// Store PATH to this plugin's directory
Kevin Cristiano's avatar
Kevin Cristiano committed
if (!defined( 'CIVICRM_PLUGIN_DIR')) {
  define( 'CIVICRM_PLUGIN_DIR', plugin_dir_path(CIVICRM_PLUGIN_FILE) );
}

Kevin Cristiano's avatar
Kevin Cristiano committed
/*
Kevin Cristiano's avatar
Kevin Cristiano committed
 * The constant CIVICRM_SETTINGS_PATH is also defined in civicrm.config.php and
 * may already have been defined there - e.g. by cron or external scripts.
 */
if ( !defined( 'CIVICRM_SETTINGS_PATH' ) ) {

Kevin Cristiano's avatar
Kevin Cristiano committed
  /*
Kevin Cristiano's avatar
Kevin Cristiano committed
   * Test where the settings file exists.
   *
   * If the settings file is found in the 4.6 and prior location, use that as
   * CIVICRM_SETTINGS_PATH, otherwise use the new location.
   */
Kevin Cristiano's avatar
Kevin Cristiano committed
  $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';

Kevin Cristiano's avatar
Kevin Cristiano committed
  if (file_exists($wp_civi_settings_deprectated)) {
    define( 'CIVICRM_SETTINGS_PATH', $wp_civi_settings_deprectated );
  }
  else  {
    define( 'CIVICRM_SETTINGS_PATH', $wp_civi_settings );
  }

Kevin Cristiano's avatar
Kevin Cristiano committed
// Test if CiviCRM is installed
Kevin Cristiano's avatar
Kevin Cristiano committed
if ( file_exists( CIVICRM_SETTINGS_PATH )  ) {
    define( 'CIVICRM_INSTALLED', TRUE );
  } else {
    define( 'CIVICRM_INSTALLED', FALSE );
}

Kevin Cristiano's avatar
Kevin Cristiano committed
// Prevent CiviCRM from rendering its own header
Kevin Cristiano's avatar
Kevin Cristiano committed
define( 'CIVICRM_UF_HEAD', TRUE );


/**
Kevin Cristiano's avatar
Kevin Cristiano committed
 * Define CiviCRM_For_WordPress Class.
 *
 * @since 4.4
Kevin Cristiano's avatar
Kevin Cristiano committed
 */
class CiviCRM_For_WordPress {

  /**
Kevin Cristiano's avatar
Kevin Cristiano committed
   * Plugin instance.
   *
   * @since 4.4
   * @access private
   * @var object $instance The plugin instance.
Kevin Cristiano's avatar
Kevin Cristiano committed
   */
Kevin Cristiano's avatar
Kevin Cristiano committed
  private static $instance;
Kevin Cristiano's avatar
Kevin Cristiano committed

  /**
Kevin Cristiano's avatar
Kevin Cristiano committed
   * Plugin context (broad).
   *
   * @since 4.4
   * @access public
   * @var bool $in_wordpress The broad plugin context.
Kevin Cristiano's avatar
Kevin Cristiano committed
   */
  static $in_wordpress;

Kevin Cristiano's avatar
Kevin Cristiano committed
  /**
   * Plugin context (specific).
   *
   * @since 4.4
   * @access public
   * @var str $context The specific plugin context.
   */
Kevin Cristiano's avatar
Kevin Cristiano committed
  static $context;

  /**
Kevin Cristiano's avatar
Kevin Cristiano committed
   * Shortcodes management object.
   *
   * @since 4.4
   * @access public
   * @var object CiviCRM_For_WordPress_Shortcodes The shortcodes management object.
Kevin Cristiano's avatar
Kevin Cristiano committed
   */
  public $shortcodes;

  /**
Kevin Cristiano's avatar
Kevin Cristiano committed
   * Modal dialog management object.
   *
   * @since 4.4
   * @access public
   * @var object CiviCRM_For_WordPress_Shortcodes_Modal The modal dialog management object.
Kevin Cristiano's avatar
Kevin Cristiano committed
   */
  public $modal;

  /**
Kevin Cristiano's avatar
Kevin Cristiano committed
   * Basepage management object.
   *
   * @since 4.4
   * @access public
   * @var object CiviCRM_For_WordPress_Basepage The basepage management object.
Kevin Cristiano's avatar
Kevin Cristiano committed
   */
  public $basepage;

  /**
Kevin Cristiano's avatar
Kevin Cristiano committed
   * User management object.
   *
   * @since 4.4
   * @access public
   * @var object CiviCRM_For_WordPress_Users The user management object.
Kevin Cristiano's avatar
Kevin Cristiano committed
   */
  public $users;


  // ---------------------------------------------------------------------------
  // Setup
  // ---------------------------------------------------------------------------

Loading
Loading full blame...