# hostinger/2.1.0/includes/class-hostinger-bootstrap.php

Hostinger Tools, version 2.1.0. 128 lines.

- Page: https://pluginprobe.com/plugins/hostinger/2.1.0/code/includes/class-hostinger-bootstrap.php
- Raw: https://pluginprobe.com/plugins/hostinger/2.1.0/raw/includes/class-hostinger-bootstrap.php
- Modified: 2024-03-06T14:16:54+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/hostinger/2.1.0/code/includes/class-hostinger-bootstrap.php#L10-L20`.

```php
<?php

defined( 'ABSPATH' ) || exit;

class Hostinger_Bootstrap {
	protected Hostinger_Loader $loader;

	public function __construct() {
		require_once HOSTINGER_ABSPATH . 'includes/class-hostinger-loader.php';
		$this->loader = new Hostinger_Loader();
	}

	public function run(): void {
		$this->load_dependencies();
		$this->set_locale();
		$this->session_actions();
		$this->loader->run();
	}

	public function session_actions() {
		$helper = new Hostinger_Helper();
		$this->loader->add_action( 'init', $helper, 'register_session' );
		$this->loader->add_action( 'wp_logout', $helper, 'destroy_session' );
	}

	private function load_dependencies(): void {
		require_once HOSTINGER_ABSPATH . 'includes/class-hostinger-config.php';
		require_once HOSTINGER_ABSPATH . 'includes/class-hostinger-helper.php';
		require_once HOSTINGER_ABSPATH . 'includes/class-hostinger-errors.php';
		require_once HOSTINGER_ABSPATH . 'includes/class-hostinger-settings.php';
		require_once HOSTINGER_ABSPATH . 'includes/requests/class-hostinger-requests-client.php';

		if ( ! empty( Hostinger_Helper::get_api_token() ) ) {
			require_once HOSTINGER_ABSPATH . 'includes/amplitude/class-hostinger-amplitude-actions.php';
			require_once HOSTINGER_ABSPATH . 'includes/amplitude/class-hostinger-amplitude.php';
			require_once HOSTINGER_ABSPATH . 'includes/surveys/class-hostinger-surveys-questions.php';
			require_once HOSTINGER_ABSPATH . 'includes/surveys/Rest/class-hostinger-surveys-rest.php';
			require_once HOSTINGER_ABSPATH . 'includes/surveys/class-hostinger-surveys.php';
		}

		$this->load_onboarding_dependencies();
		$this->load_public_dependencies();

		if ( is_admin() ) {
			$this->load_admin_dependencies();
			if ( ! empty( Hostinger_Helper::get_api_token() ) ) {
				$this->define_admin_surveys();
			}
		}

		if ( defined( 'WP_CLI' ) && WP_CLI ) {
			require_once HOSTINGER_ABSPATH . 'includes/class-hostinger-cli.php';
		}

		require_once HOSTINGER_ABSPATH . 'includes/class-hostinger-i18n.php';

		if ( get_option( 'hostinger_maintenance_mode', 0 ) ) {
			require_once HOSTINGER_ABSPATH . 'includes/class-hostinger-coming-soon.php';
		}
	}

	private function set_locale() {

		$plugin_i18n = new Hostinger_i18n();
		$this->loader->add_action( 'plugins_loaded', $plugin_i18n, 'load_plugin_textdomain' );
	}

	private function load_admin_dependencies(): void {
		require_once HOSTINGER_ABSPATH . 'includes/admin/class-hostinger-admin-assets.php';
		require_once HOSTINGER_ABSPATH . 'includes/admin/class-hostinger-admin-hooks.php';
		require_once HOSTINGER_ABSPATH . 'includes/admin/class-hostinger-admin-menu.php';
		require_once HOSTINGER_ABSPATH . 'includes/admin/class-hostinger-admin-ajax.php';
		require_once HOSTINGER_ABSPATH . 'includes/admin/class-hostinger-admin-redirect.php';
	}

	private function define_admin_surveys(): void {
		$settings         = new Hostinger_Settings();
		$helper           = new Hostinger_Helper();
		$config_handler   = new Hostinger_Config();
		$survey_questions = new Hostinger_Surveys_Questions();
		$client           = new Hostinger_Requests_Client(
			$config_handler->get_config_value( 'base_rest_uri', HOSTINGER_REST_URI ),
			array(
				Hostinger_Config::TOKEN_HEADER  => $helper::get_api_token(),
				Hostinger_Config::DOMAIN_HEADER => $helper->get_host_info(),
			)
		);
		$rest             = new Hostinger_Surveys_Rest( $client );
		$surveys          = new Hostinger_Surveys( $settings, $helper, $config_handler, $survey_questions, $rest );

		switch ( true ) {
			case $surveys->is_woocommerce_survey_enabled():
				$survey_function = 'customer_csat_survey';
				break;

			case $surveys->is_ai_onboarding_survey_enabled():
				$survey_function = 'customer_ai_csat_survey';
				break;

			case $surveys->is_content_generation_survey_enabled():
				$survey_function = 'ai_plugin_survey';
				break;

			case $surveys->is_affiliate_survey_enabled():
				$survey_function = 'affiliate_plugin_survey';
				break;

			default:
				return; // No survey enabled
		}

		$this->loader->add_action( 'admin_footer', $surveys, $survey_function, 10 );
	}

	private function load_public_dependencies(): void {
		require_once HOSTINGER_ABSPATH . 'includes/public/class-hostinger-public-assets.php';
	}

	private function load_onboarding_dependencies(): void {
		require_once HOSTINGER_ABSPATH . 'includes/admin/class-hostinger-admin-actions.php';
		require_once HOSTINGER_ABSPATH . 'includes/admin/onboarding/class-hostinger-onboarding-settings.php';

		if ( ! Hostinger_Onboarding_Settings::all_steps_completed() ) {
			require_once HOSTINGER_ABSPATH . 'includes/admin/onboarding/class-hostinger-autocomplete-steps.php';
		}
	}
}

```
