[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@18.191.150.173: ~ $
<?php
/**
 * Preview script for html markup generator
 *
 * @package tutor-droip-elements
 */

namespace TutorLMSDroip;

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

/**
 * Class Pages
 * This class is used to define all helper functions.
 */
class Pages {

	/**
	 * Class constructor
	 *
	 * @since 1.0.0
	 */
	public function __construct() {
		/**
		 * Manage Post API call's
		 */
		add_action( 'wp_ajax_nopriv_tde_get_apis', array( $this, 'tde_get_apis' ) );
		add_action( 'wp_ajax_tde_get_apis', array( $this, 'tde_get_apis' ) );

		add_action( 'template_redirect', array( $this, 'control_pages_content' ) );

		add_filter( 'droip_assets_should_load', array( $this, 'load_droip_assets' ) );
	}

	/**
	 * Get all APIs
	 *
	 * @since 1.0.0
	 */
	public function tde_get_apis() {
		$course_template  = Helper::get_course_template_posts();

		$pages = array();
		foreach ($course_template as $key => $template) {
			$pages[] = array(
				'id'          => $template->ID,
				'title'       => $template->post_title,
				'post_type'   => $template->post_type,
				'status'   => $template->post_status,
				'preview_url' => $template->guid,
				'editor_url'  => add_query_arg(
						array(
							'action'  => 'droip',
							'post_id' => $template->ID,
						),
						$template->guid
					)
				);
		}

		wp_send_json_success( $pages );
	}

	/**
	 * Generate courses page
	 *
	 * @since 1.0.0
	 */
	public function control_pages_content() {
		$action = sanitize_text_field( wp_unslash( isset( $_GET['action'] ) ? $_GET['action'] : '' ) );
		$load_for = sanitize_text_field( wp_unslash( isset( $_GET['load_for'] ) ? $_GET['load_for'] : '' ) );
		if ( $this->is_course_page() && ( $action !== 'droip' || $load_for === 'droip-iframe' )) {
				$this->generate_course_page();
		}
	}

	/**
	 * Check if current page is courses page
	 */
	private function load_preview_script() {
		add_action( 'wp_enqueue_scripts', array( $this, 'load_assets' ), 100 );
	}


	/**
	 * Load assets for preview page
	 */
	public function load_assets() {
		wp_enqueue_script( TDE_APP_PREFIX . '-tutor-droip-preview', TDE_PLUGIN_ROOT_BASE . 'build/js/preview.min.js', array( 'wp-i18n' ), '1.0.0', true );
		wp_enqueue_style( TDE_APP_PREFIX . '-tutor-droip-preview', TDE_PLUGIN_ROOT_BASE . 'build/css/preview.min.css', null, '1.0.0' );
	}

	/**
	 * Load droip assets
	 *
	 * @param bool $default_value default value.
	 * @return bool
	 */
	public function load_droip_assets( $default_value ) {
		if ( $this->is_course_page() ) {
			return true;
		}
		return $default_value;
	}
	/**
	 * Generate course page
	 *
	 * @since 1.0.0
	 */
	private function generate_course_page() {
		$template = apply_filters('droip_template_finder', get_post(get_the_ID()) );
		if(!$template)return;
		$this->load_preview_script();

		$course_template = get_post($template['id']);

		if($course_template->post_status === 'publish'){
			$html            = apply_filters(
				'droip_html_generator',
				'',
				$course_template->ID
			);
			$custom_data = array(
				'droip_template_content' => $html, // Example: Get the current post ID
				'droip_template_id' => $template['id'],
			);
			// Set a global variable with custom data to make it available in the template
			set_query_var('droip_custom_data', $custom_data);

			include_once DROIP_FULL_CANVAS_TEMPLATE_PATH;
			exit();
		}
	}

	/**
	 * Check if current page is course page
	 *
	 * @return bool
	 */
	private function is_course_page() {
		global $wp_query;
		$tutor = tutor();
		if ( $wp_query->is_single && ! empty( $wp_query->query_vars['post_type'] ) && $wp_query->query_vars['post_type'] === $tutor->course_post_type ) {
			return true;
		}

		return false;
	}
}

Filemanager

Name Type Size Permission Actions
ElementGenerator Folder 0755
Ajax.php File 5.41 KB 0644
Backend.php File 1.03 KB 0644
Editor.php File 832 B 0644
Frontend.php File 321 B 0644
Helper.php File 4.7 KB 0644
Iframe.php File 1.36 KB 0644
Pages.php File 3.62 KB 0644