| Server IP : 104.26.5.103 / Your IP : 216.73.216.4 Web Server : nginx/1.27.1 System : Linux in-5 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64 User : arabianexpress ( 1872) PHP Version : 8.0.30 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /storage/v9321/leapdubai/public_html/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.0.13
* 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.0.13' );
}
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';
}