mirror of
https://ghproxy.net/https://github.com/AlxMedia/magaziner.git
synced 2025-08-28 01:57:51 +08:00
Initial commit
This commit is contained in:
commit
b0607606ae
369 changed files with 85494 additions and 0 deletions
102
functions/kirki/kirki.php
Normal file
102
functions/kirki/kirki.php
Normal file
|
@ -0,0 +1,102 @@
|
|||
<?php
|
||||
/**
|
||||
* Plugin Name: Kirki Customizer Framework
|
||||
* Plugin URI: https://kirki.org
|
||||
* Description: The Ultimate WordPress Customizer Framework
|
||||
* Author: Ari Stathopoulos (@aristath)
|
||||
* Author URI: https://aristath.github.io
|
||||
* Version: 3.0.45
|
||||
* Text Domain: kirki
|
||||
* Requires WP: 4.9
|
||||
* Requires PHP: 5.3
|
||||
* GitHub Plugin URI: aristath/kirki
|
||||
* GitHub Plugin URI: https://github.com/aristath/kirki
|
||||
*
|
||||
* @package Kirki
|
||||
* @category Core
|
||||
* @author Ari Stathopoulos (@aristath)
|
||||
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
||||
* @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.0.45' );
|
||||
}
|
||||
|
||||
// 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
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue