woocommerce/woocommerce.php

57 lines
1.5 KiB
PHP
Raw Normal View History

2011-08-10 17:11:11 +00:00
<?php
2012-03-20 13:22:35 +00:00
/**
* Plugin Name: WooCommerce
2016-07-05 22:52:16 +00:00
* Plugin URI: https://woocommerce.com/
* Description: An eCommerce toolkit that helps you sell anything. Beautifully.
2020-02-06 13:00:43 +00:00
* Version: 4.0.0-beta.1
2017-02-09 17:08:39 +00:00
* Author: Automattic
* Author URI: https://woocommerce.com
2012-03-20 13:22:35 +00:00
* Text Domain: woocommerce
* Domain Path: /i18n/languages/
2012-08-07 08:38:08 +00:00
*
2012-03-20 13:22:35 +00:00
* @package WooCommerce
*/
2019-01-23 16:19:40 +00:00
defined( 'ABSPATH' ) || exit;
2011-08-10 17:11:11 +00:00
if ( ! defined( 'WC_PLUGIN_FILE' ) ) {
define( 'WC_PLUGIN_FILE', __FILE__ );
}
/**
* Load core packages and the autoloader.
*
* The new packages and autoloader require PHP 5.6+. If this dependency is not met, do not include them. Users will be warned
* that they are using an older version of PHP. WooCommerce will continue to load, but some functionality such as the REST API
* and Blocks will be missing.
*
* This requirement will be enforced in future versions of WooCommerce.
*/
if ( version_compare( PHP_VERSION, '5.6.0', '>=' ) ) {
require __DIR__ . '/src/Autoloader.php';
require __DIR__ . '/src/Packages.php';
if ( ! \Automattic\WooCommerce\Autoloader::init() ) {
return;
}
\Automattic\WooCommerce\Packages::init();
}
// Include the main WooCommerce class.
if ( ! class_exists( 'WooCommerce', false ) ) {
include_once dirname( WC_PLUGIN_FILE ) . '/includes/class-woocommerce.php';
}
/**
2019-01-23 16:19:40 +00:00
* Returns the main instance of WC.
*
* @since 2.1
2013-09-25 13:10:40 +00:00
* @return WooCommerce
*/
2019-02-18 11:55:36 +00:00
function WC() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
return WooCommerce::instance();
}
2011-12-08 12:50:50 +00:00
// Global for backwards compatibility.
2018-11-08 10:59:07 +00:00
$GLOBALS['woocommerce'] = WC();