103 lines
3.1 KiB
PHP
103 lines
3.1 KiB
PHP
<?php
|
|
/**
|
|
* Plugin Name: Kirki Customizer Framework
|
|
* Plugin URI: https://kirki.org
|
|
* Description: The Ultimate WordPress Customizer Framework
|
|
* Author: David Vongries
|
|
* Author URI: https://wp-pagebuilderframework.com/
|
|
* Version: 3.1.9
|
|
* Text Domain: kirki
|
|
* Requires WP: 4.9
|
|
* Requires PHP: 5.3
|
|
* GitHub Plugin URI: kirki-framework/kirki
|
|
* GitHub Plugin URI: https://github.com/kirki-framework/kirki
|
|
*
|
|
* @package Kirki
|
|
* @category Core
|
|
* @author Ari Stathopoulos (@aristath)
|
|
* @copyright Copyright (c) 2020, David Vongries
|
|
* @license https://opensource.org/licenses/MIT
|
|
* @since 1.0
|
|
*/
|
|
|
|
// Exit if accessed directly.
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
// No need to proceed if Kirki already exists.
|
|
if ( class_exists( 'Kirki' ) ) {
|
|
return;
|
|
}
|
|
|
|
// Include the autoloader.
|
|
require_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'class-kirki-autoload.php'; // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
|
new Kirki_Autoload();
|
|
|
|
if ( ! defined( 'KIRKI_PLUGIN_FILE' ) ) {
|
|
define( 'KIRKI_PLUGIN_FILE', __FILE__ );
|
|
}
|
|
|
|
// Define the KIRKI_VERSION constant.
|
|
if ( ! defined( 'KIRKI_VERSION' ) ) {
|
|
define( 'KIRKI_VERSION', '3.1.9' );
|
|
}
|
|
|
|
// Make sure the path is properly set.
|
|
Kirki::$path = wp_normalize_path( dirname( __FILE__ ) ); // phpcs:ignore WordPress.WP.GlobalVariablesOverride
|
|
Kirki_Init::set_url();
|
|
|
|
new Kirki_Controls();
|
|
|
|
if ( ! function_exists( 'Kirki' ) ) {
|
|
/**
|
|
* Returns an instance of the Kirki object.
|
|
*/
|
|
function kirki() {
|
|
$kirki = Kirki_Toolkit::get_instance();
|
|
return $kirki;
|
|
}
|
|
}
|
|
|
|
// Start Kirki.
|
|
global $kirki;
|
|
$kirki = kirki();
|
|
|
|
// Instantiate the modules.
|
|
$kirki->modules = new Kirki_Modules();
|
|
|
|
Kirki::$url = plugins_url( '', __FILE__ );
|
|
|
|
// Instantiate classes.
|
|
new Kirki();
|
|
new Kirki_L10n();
|
|
|
|
// Include deprecated functions & methods.
|
|
require_once wp_normalize_path( dirname( __FILE__ ) . '/deprecated/deprecated.php' ); // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
|
|
|
// Include the ariColor library.
|
|
require_once wp_normalize_path( dirname( __FILE__ ) . '/lib/class-aricolor.php' ); // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
|
|
|
// Add an empty config for global fields.
|
|
Kirki::add_config( '' );
|
|
|
|
$custom_config_path = dirname( __FILE__ ) . '/custom-config.php';
|
|
$custom_config_path = wp_normalize_path( $custom_config_path );
|
|
if ( file_exists( $custom_config_path ) ) {
|
|
require_once $custom_config_path; // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
|
}
|
|
|
|
// Add upgrade notifications.
|
|
require_once wp_normalize_path( dirname( __FILE__ ) . '/upgrade-notifications.php' ); // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
|
|
|
/**
|
|
* To enable tests, add this line to your wp-config.php file (or anywhere alse):
|
|
* define( 'KIRKI_TEST', true );
|
|
*
|
|
* Please note that the example.php file is not included in the wordpress.org distribution
|
|
* and will only be included in dev versions of the plugin in the github repository.
|
|
*/
|
|
if ( defined( 'KIRKI_TEST' ) && true === KIRKI_TEST && file_exists( dirname( __FILE__ ) . '/example.php' ) ) {
|
|
include_once dirname( __FILE__ ) . '/example.php'; // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
|
}
|