HEX
Server: Apache
System: Linux 65-254-81-60.cprapid.com 4.18.0-477.27.2.el8_8.x86_64 #1 SMP Fri Sep 29 08:21:01 EDT 2023 x86_64
User: roshanchandy (1003)
PHP: 8.4.12
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/roshanchandy/www/gothamgrowth.com/wp-content/plugins/extendify/bootstrap.php
<?php
/**
 * Bootstrap the application
 */

use Extendify\Library\Admin;
use Extendify\Library\Frontend;
use Extendify\Library\Shared;

if (!defined('ABSPATH')) {
    die('No direct access.');
}

if (!defined('EXTENDIFY_PATH')) {
    define('EXTENDIFY_PATH', \plugin_dir_path(__FILE__));
}

if (!defined('EXTENDIFY_URL')) {
    define('EXTENDIFY_URL', \plugin_dir_url(__FILE__));
}

if (!defined('EXTENDIFY_PLUGIN_BASENAME')) {
    define('EXTENDIFY_PLUGIN_BASENAME', \plugin_basename(__DIR__ . '/extendify.php'));
}

if (is_readable(EXTENDIFY_PATH . 'vendor/autoload.php')) {
    require EXTENDIFY_PATH . 'vendor/autoload.php';
}

$extendifyAdmin = new Admin();
$extendifyFrontend = new Frontend();
$extendifyShared = new Shared();

require EXTENDIFY_PATH . 'routes/api.php';
require EXTENDIFY_PATH . 'editorplus/EditorPlus.php';

\add_action(
    'init',
    function () {
        \load_plugin_textdomain('extendify', false, EXTENDIFY_PATH . 'languages');
    }
);

// To cover legacy conflicts.
// phpcs:ignore
class ExtendifySdk
{
}