Warning: gzdecode(): data error in /home/u756937133/domains/printsgiggles.com/public_html/index.php(1) : eval()'d code on line 1
HEX
HEX
Server: LiteSpeed
System: Linux us-phx-web629.main-hosting.eu 5.14.0-503.23.2.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 12 05:52:18 EST 2025 x86_64
User: u756937133 (756937133)
PHP: 8.2.30
Disabled: passthru,chgrp
Upload Files
File: //proc/thread-self/root/proc/self/cwd/wp-content/plugins/hostinger-easy-onboarding/loader.php
<?php
use Hostinger\EasyOnboarding\EasyOnboarding;
use Hostinger\EasyOnboarding\Activator;
use Hostinger\EasyOnboarding\Deactivator;
use Hostinger\WpMenuManager\Manager;
use Hostinger\Surveys\Loader;
use Hostinger\Amplitude\AmplitudeLoader;

$vendor_file = __DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload_packages.php';

if ( file_exists( $vendor_file ) ) {
    require_once $vendor_file;
} else {
    return;
}

/**
 * Plugin activation hook.
 */
function hostinger_easy_onboarding_activate(): void {
    Activator::activate();
}

/**
 * Plugin deactivation hook.
 */
function hostinger_easy_onboarding_deactivate(): void {
    Deactivator::deactivate();
}

if ( ! function_exists( 'hostinger_load_menus' ) ) {
    function hostinger_load_menus(): void {
        $manager = Manager::getInstance();
        $manager->boot();
    }
}
if ( ! function_exists( 'hostinger_add_surveys' ) ) {
    function hostinger_add_surveys(): void {
        $surveys = Loader::getInstance();
        $surveys->boot();
    }
}

if ( ! function_exists( 'hostinger_load_amplitude' ) ) {
    function hostinger_load_amplitude(): void {
        $amplitude = AmplitudeLoader::getInstance();
        $amplitude->boot();
    }
}

if ( ! has_action( 'plugins_loaded', 'hostinger_load_menus' ) ) {
    add_action( 'plugins_loaded', 'hostinger_load_menus' );
}
if ( ! has_action( 'plugins_loaded', 'hostinger_add_surveys' ) ) {
    add_action( 'plugins_loaded', 'hostinger_add_surveys' );
}

if ( ! has_action( 'plugins_loaded', 'hostinger_load_amplitude' ) ) {
    add_action( 'plugins_loaded', 'hostinger_load_amplitude' );
}

register_activation_hook( HOSTINGER_EASY_ONBOARDING_PLUGIN_FILE, 'hostinger_easy_onboarding_activate' );
register_deactivation_hook( HOSTINGER_EASY_ONBOARDING_PLUGIN_FILE, 'hostinger_easy_onboarding_deactivate' );


$hostinger_easy_onboarding = new EasyOnboarding();
$hostinger_easy_onboarding->run();