HEX
Server: Apache/2
System: Linux sm.stlbg.net 3.10.0-962.3.2.lve1.5.87.el7.x86_64 #1 SMP Tue Jan 28 09:38:56 UTC 2025 x86_64
User: todorterziev (1053)
PHP: 7.4.33
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/todorterziev/public_html/wp-content/plugins/cyrlitera/libs/factory/bootstrap/boot.php
<?php
/**
 * Factory Bootstrap
 *
 * @author        Alex Kovalev <alex.kovalevv@gmail.com>
 * @since         1.0.0
 * @package       factory-bootstrap
 * @copyright (c) 2018, Webcraftic Ltd
 *
 */

// Exit if accessed directly
if( !defined('ABSPATH') ) {
	exit;
}

// module provides function only for the admin area
if( !is_admin() ) {
	return;
}

if( defined('FACTORY_BOOTSTRAP_482_LOADED') ) {
	return;
}

define('FACTORY_BOOTSTRAP_482_VERSION', '4.8.2');

define('FACTORY_BOOTSTRAP_482_LOADED', true);

if( !defined('FACTORY_FLAT_ADMIN') ) {
	define('FACTORY_FLAT_ADMIN', true);
}

define('FACTORY_BOOTSTRAP_482_DIR', dirname(__FILE__));
define('FACTORY_BOOTSTRAP_482_URL', plugins_url('', __FILE__));

require_once(FACTORY_BOOTSTRAP_482_DIR . '/includes/functions.php');

/**
 * @param Wbcr_Factory480_Plugin $plugin
 */
add_action('wbcr_factory_bootstrap_482_plugin_created', function ($plugin) {
	$manager = new Wbcr_FactoryBootstrap482_Manager($plugin);
	$plugin->setBootstap($manager);
});