| Server IP : 188.114.96.3 / Your IP : 104.23.197.70 Web Server : Apache System : Linux web236.dogado.net 4.18.0-553.141.2.lve.el7h.x86_64 #1 SMP Wed Jul 8 17:20:31 UTC 2026 x86_64 User : h193310 ( 10083) PHP Version : 8.4.12 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/h193310.web236.dogado.net/httpdocs/wp-content/plugins/kirki/ |
Upload File : |
<?php
/* THIS_FILE_IS_FREE */
/**
* Kirki
*
* @package kirki
* Plugin Name: Kirki
* Plugin URI: https://kirki.com
* Description: Kirki is an all-in-one no-code builder that empowers users to build professional-grade WordPress sites without writing any code. It’s a promising glimpse into the future of website development.
* Version: 6.2.1
* Author: Kirki
* Author URI: https://kirki.com
* License: GPLv2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: kirki
* Domain Path: /languages
* Requires at least: 5.9
* Requires PHP: 7.4
*/
use Kirki\HelperFunctions;
if (!defined('ABSPATH')) {
exit; // Exit if accessed directly.
}
// Define KIRKI_VERSION early to prevent bundled Kirki versions from loading.
if ( ! defined( 'KIRKI_VERSION' ) ) {
define( 'KIRKI_VERSION', '6.2.1' );
}
require_once plugin_dir_path( __FILE__ ) . 'config.php';
require_once __DIR__ . '/vendor/autoload.php';
require_once __DIR__ . '/customizer/class-customizer.php';
require_once __DIR__ . '/includes/KirkiBase.php';
do_action( 'kirki_loaded' );
if ( !class_exists('KirkiMain') && !class_exists('Droip') ) {
final class KirkiMain extends KirkiBase
{
protected function get_plugin_file(){
return __FILE__;
}
protected function load_version_specific_events(){
// TODO: This method will be removed in future version
}
}
/**
* Initilizes the main plugin
*
* @return \Kirki
*/
if (!function_exists('KirkiMain')) {
/**
* This function for entry point
*/
function KirkiMain()
{
return KirkiMain::init();
}
try {
// kick-off the plugin.
KirkiMain();
} catch (Exception $e) {
}
}
}
add_action('init', 'kirki_boot_application', 0);
function kirki_boot_application()
{
require_once KIRKI_PLUGIN_PATH . '/bootstrap/app.php';
}