HEX
Server: nginx/1.24.0
System: Linux 19.178.153.160.host.secureserver.net 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
User: www-data (33)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /var/www/vedaholiday.com/wp-content/plugins/wp-travel-engine/includes/class-wte-getting-started.php
<?php
/**
 * Getting started handler class.
 *
 * @package WP_Travel_Engine
 */

#[AllowDynamicProperties]
class WTE_Getting_Started {

	/**
	 * Class constructor.
	 */
	public function __construct() {

		$this->version = WP_TRAVEL_ENGINE_VERSION;

		$this->init_hooks();
	}

	/**
	 * Load Admin Scripts.
	 *
	 * @return void
	 */
	public function load_scripts() {

		$current_screen = get_current_screen();

		// Admin Getting Started.
		wp_register_style( 'wte-getting-started', plugin_dir_url( WP_TRAVEL_ENGINE_FILE_PATH ) . 'dist/admin/getting-started.css', array(), $this->version );
	}

	/**
	 * Initilization hooks.
	 *
	 * @return void
	 */
	public function init_hooks() {

		add_action( 'admin_menu', array( $this, 'admin_menus' ) );

		add_action( 'admin_enqueue_scripts', array( $this, 'load_scripts' ) );

		add_action( 'admin_init', array( $this, 'setup_redirection' ) );
	}

	/**
	 * Setup to getting started redirection.
	 *
	 * @return void
	 */
	public function setup_redirection() {
		$version       = str_replace( '.', '', WP_TRAVEL_ENGINE_VERSION );
		$has_changelog = apply_filters( "wte_show_changelog_for_{$version}", false );
		$shown         = get_transient( "wte_getting_started_page_shown_{$version}" );
		$redirect      = ! get_transient( "wte_redirected_{$version}" );
		if ( $has_changelog && $redirect ) {
			set_transient( "wte_redirected_{$version}", true );

			wp_safe_redirect( admin_url( 'edit.php?post_type=booking&page=whats-new' ) );

			exit;
		}
	}

	/**
	 * Add admin menus/screens.
	 */
	public function admin_menus() {
		$version = str_replace( '.', '', WP_TRAVEL_ENGINE_VERSION );

		if ( ! get_transient( "wte_getting_started_page_shown_{$version}" ) || ( isset( $_GET['page'] ) && basename( __FILE__ ) === $_GET['page'] ) ) { // phpcs:ignore
			add_dashboard_page(
				__( 'WP Travel Engine - Welcome', 'wp-travel-engine' ),
				__( 'Getting Started', 'wp-travel-engine' ),
				'manage_options',
				basename( __FILE__ ),
				array( $this, 'getting_started_template' )
			);
		}
	}

	/**
	 * Setup Wizard Header.
	 */
	public function setup_wizard_header() {
	}

	/**
	 * Wizard content.
	 *
	 * @return void
	 */
	public static function setup_wizard_content() {
		$major_version_int = str_replace( '.', '', WP_TRAVEL_ENGINE_VERSION );
		$assets_path_url   = WPTRAVELENGINE_UPDATES_DATA_PATH . '/assets/';
		if ( file_exists( WPTRAVELENGINE_UPDATES_DATA_PATH . '/data.json' ) ) {
			ob_start();
			include_once WPTRAVELENGINE_UPDATES_DATA_PATH . '/data.json';
			$template_data = ob_get_clean();
			$template_data = json_decode( $template_data );
			include_once plugin_dir_path( WP_TRAVEL_ENGINE_FILE_PATH ) . 'admin/partials/plugin-updates/getting-started/getting-started.php';
		}
	}

	/**
	 * Setup Wizard Footer.
	 */
	public function setup_wizard_footer() {
	}

	/**
	 * Template output.
	 *
	 * @return void
	 */
	public function getting_started_template() {

		if ( empty( $_GET['page'] ) || 'class-wte-getting-started.php' !== $_GET['page'] ) { // phpcs:ignore
			return;
		}
		$version = str_replace( '.', '', WP_TRAVEL_ENGINE_VERSION );

		set_transient( "wte_getting_started_page_shown_{$version}", true );

		$this->setup_wizard_header();

		self::setup_wizard_content();

		$this->setup_wizard_footer();
	}
}
new WTE_Getting_Started();