403Webshell
Server IP : 38.190.208.107  /  Your IP : 216.73.216.51
Web Server : nginx/1.28.1
System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64
User : root ( 0)
PHP Version : 8.2.28
Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /www/wwwroot/wp.5/wp-content/themes/woodmart/inc/modules/layouts/admin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /www/wwwroot/wp.5/wp-content/themes/woodmart/inc/modules/layouts/admin/class-admin.php
<?php
/**
 * Admin layouts class file.
 *
 * @package woodmart
 */

namespace XTS\Modules\Layouts;

use WP_Post;
use WP_Query;
use XTS\Singleton;

/**
 * Admin layouts class.
 */
class Admin extends Singleton {
	/**
	 * Layout types.
	 *
	 * @var array
	 */
	private $layout_types = array();
	/**
	 * Post type.
	 *
	 * @var string
	 */
	private $post_type = 'woodmart_layout';
	/**
	 * Type meta key.
	 *
	 * @var string
	 */
	private $type_meta_key = 'wd_layout_type';
	/**
	 * Conditions meta key.
	 *
	 * @var string
	 */
	private $conditions_meta_key = 'wd_layout_conditions';

	/**
	 * Constructor.
	 */
	public function init() {
		add_action( 'init', array( $this, 'set_layout_types' ) );
		add_filter( 'woodmart_admin_localized_string_array', array( $this, 'add_localized_settings' ) );
		add_action( 'admin_menu', array( $this, 'add_pages_to_dashboard_menu' ), 100 );

		$this->add_actions();
	}

	/**
	 * Set layout type.
	 */
	public function set_layout_types() {
		$woocommerce_types = array(
			'single_product'           => esc_html__( 'Single product', 'woodmart' ),
			'shop_archive'             => esc_html__( 'Products archive', 'woodmart' ),
			'cart'                     => esc_html__( 'Cart', 'woodmart' ),
			'empty_cart'               => esc_html__( 'Empty cart', 'woodmart' ),
			'checkout_form'            => esc_html__( 'Checkout form', 'woodmart' ),
			'checkout_content'         => esc_html__( 'Checkout top content', 'woodmart' ),
			'thank_you_page'           => esc_html__( 'Thank you page', 'woodmart' ),
			'my_account_page'          => esc_html__( 'My account', 'woodmart' ),
			'my_account_auth'          => esc_html__( 'Login/Register', 'woodmart' ),
			'my_account_lost_password' => esc_html__( 'Lost password', 'woodmart' ),
		);

		if ( woodmart_woocommerce_installed() ) {
			$this->layout_types += $woocommerce_types;

			if ( 'native' === woodmart_get_opt( 'current_builder' ) ) {
				$this->layout_types['checkout_form'] = esc_html__( 'Checkout', 'woodmart' );
				unset( $this->layout_types['checkout_content'] );
			}
		}

		$this->layout_types += array(
			'single_post'       => esc_html__( 'Single post', 'woodmart' ),
			'blog_archive'      => esc_html__( 'Blog', 'woodmart' ),
			'single_portfolio'  => esc_html__( 'Single project', 'woodmart' ),
			'portfolio_archive' => esc_html__( 'Portfolio', 'woodmart' ),
		);

		if ( woodmart_woocommerce_installed() ) {
			$this->layout_types += array(
				'product_loop_item' => esc_html__( 'Product loop item', 'woodmart' ),
			);
		}
	}

	/**
	 * Enqueue scripts.
	 */
	public function enqueue_scripts() {
		wp_enqueue_script( 'wd-layout', WOODMART_THEME_DIR . '/inc/modules/layouts/assets/layouts.js', array( 'jquery' ), WOODMART_VERSION, true );
		wp_enqueue_script( 'select2', WOODMART_ASSETS . '/js/libs/select2.full.min.js', array(), WOODMART_VERSION, true );
	}

	/**
	 * Add actions.
	 */
	public function add_actions() {
		add_filter( 'views_edit-woodmart_layout', array( $this, 'print_interface' ) );
		add_filter( 'parse_query', array( $this, 'filter_layouts_by_type' ) );
		add_action(
			'manage_woodmart_layout_posts_columns',
			array(
				$this,
				'admin_columns_titles',
			)
		);
		add_action(
			'manage_woodmart_layout_posts_custom_column',
			array(
				$this,
				'admin_columns_content',
			),
			10,
			2
		);
		add_action( 'add_meta_boxes', array( $this, 'add_conditions_box' ), 10, 2 );

		add_filter( 'use_block_editor_for_post_type', array( $this, 'set_gutenberg_editor' ), 100, 2 );
	}

	/**
	 * Add box.
	 *
	 * @param string  $post_type Post type.
	 * @param WP_Post $post      Post object.
	 */
	public function add_conditions_box( $post_type, $post ) {
		if ( 'woodmart_layout' !== $post_type ) {
			return;
		}

		$type = get_post_meta( $post->ID, $this->type_meta_key, true );

		if ( in_array( $type, array( 'single_product', 'shop_archive', 'my_account_page', 'single_post', 'blog_archive', 'single_portfolio', 'portfolio_archive', 'thank_you_page' ), true ) ) {
			add_meta_box(
				'xts-layout-conditions',
				esc_html__( 'Layout conditions', 'woodmart' ),
				array(
					$this,
					'conditions_box_callback',
				),
				'woodmart_layout',
			);
		}
	}

	/**
	 * Box callback.
	 *
	 * @param WP_Post $post Post object.
	 */
	public function conditions_box_callback( $post ) {
		$this->enqueue_scripts();
		$this->print_condition_template();
		echo $this->get_edit_conditions_template( $post->ID ); // phpcs:ignore
	}

	/**
	 * Get template.
	 *
	 * @param string $template_name Template name.
	 * @param array  $args          Arguments for template.
	 */
	public function get_template( $template_name, $args = array() ) {
		if ( ! empty( $args ) && is_array( $args ) ) {
			extract( $args ); // phpcs:ignore
		}

		include WOODMART_THEMEROOT . '/inc/modules/layouts/admin/templates/' . $template_name . '.php';
	}

	/**
	 * Is current screen.
	 *
	 * @return bool
	 */
	private function is_current_screen() {
		global $pagenow, $typenow;

		return 'edit.php' === $pagenow && $this->post_type === $typenow;
	}

	/**
	 * Filter layouts by type.
	 *
	 * @param WP_Query $query Query.
	 *
	 * @return void
	 */
	public function filter_layouts_by_type( $query ) {
		if ( ! $this->is_current_screen() || ! isset( $_GET['wd_layout_type_tab'] ) || 'all' === $_GET['wd_layout_type_tab'] ) { // phpcs:ignore
			return;
		}

		$current_tab = sanitize_text_field( $_GET['wd_layout_type_tab'] ); // phpcs:ignore

		if ( 'checkout' === $current_tab ) {
			$current_tab = array( 'checkout_form', 'checkout_content', 'thank_you_page' );
		}

		if ( 'my_account' === $current_tab ) {
			$current_tab = array( 'my_account_page', 'my_account_auth', 'my_account_lost_password' );
		}

		if ( 'cart' === $current_tab ) {
			$current_tab = array( 'cart', 'empty_cart' );
		}

		if ( 'post' === $current_tab ) {
			$current_tab = array( 'single_post', 'single_portfolio' );
		}

		if ( 'archive' === $current_tab ) {
			$current_tab = array( 'blog_archive', 'portfolio_archive' );
		}

		if ( 'loop_item' === $current_tab ) {
			$current_tab = array( 'product_loop_item' );
		}

		$query->query_vars['type_meta_key'] = $this->type_meta_key; // phpcs:ignore
		$query->query_vars['meta_value']    = $current_tab; // phpcs:ignore
	}

	/**
	 * Columns content.
	 *
	 * @param string $column_name Column name.
	 * @param int    $post_id     Post id.
	 */
	public function admin_columns_content( $column_name, $post_id ) {
		if ( 'wd_layout_type' === $column_name ) {
			$type = get_post_meta( $post_id, $this->type_meta_key, true );

			if ( 'native' === woodmart_get_opt( 'current_builder' ) && 'checkout_content' === $type ) {
				$type = 'checkout_form';
			}

			$url = add_query_arg(
				array(
					'post_type'          => $this->post_type,
					'wd_layout_type_tab' => $type,
				),
				admin_url( 'edit.php' )
			);

			?>
			<?php if ( $type && isset( $this->layout_types[ $type ] ) ) : ?>
				<a href="<?php echo esc_url( $url ); ?>">
					<?php echo esc_html( $this->layout_types[ $type ] ); ?>
				</a>
			<?php endif; ?>
			<?php
		}

		if ( 'wd_layout_conditions' === $column_name ) {
			echo $this->get_edit_conditions_template( $post_id ); // phpcs:ignore
		}

		if ( 'wd_layout_status' === $column_name ) {
			echo $this->get_status_button_template( $post_id ); // phpcs:ignore
		}
	}

	/**
	 * Columns header.
	 *
	 * @param array $posts_columns Columns.
	 *
	 * @return array
	 */
	public function admin_columns_titles( $posts_columns ) {
		$offset = 2;

		return array_slice( $posts_columns, 0, $offset, true ) + array(
			'wd_layout_type'       => esc_html__( 'Type', 'woodmart' ),
			'wd_layout_conditions' => esc_html__( 'Conditions', 'woodmart' ),
			'wd_layout_status'     => esc_html__( 'Active', 'woodmart' ),
		) + array_slice( $posts_columns, $offset, null, true );
	}

	/**
	 * Get edit conditions template.
	 *
	 * @param int $post_id Post id.
	 *
	 * @return string
	 */
	public function get_status_button_template( $post_id ) {
		$type = get_post_meta( $post_id, $this->type_meta_key, true );

		if ( str_contains( $type, 'loop_item' ) ) {
			return '';
		}

		ob_start();

		$this->get_template(
			'status-button',
			array(
				'post_id' => $post_id,
				'status'  => get_post_status( $post_id ),
			)
		);

		return ob_get_clean();
	}

	/**
	 * Get edit conditions template.
	 *
	 * @param int $post_id Post id.
	 *
	 * @return string
	 */
	public function get_edit_conditions_template( $post_id ) {
		$conditions = get_post_meta( $post_id, $this->conditions_meta_key, true );
		$type       = get_post_meta( $post_id, $this->type_meta_key, true );

		if ( ! in_array( $type, array( 'single_product', 'shop_archive', 'my_account_page', 'single_post', 'blog_archive', 'single_portfolio', 'portfolio_archive', 'thank_you_page' ), true ) ) {
			return '';
		}

		if ( $conditions ) {
			foreach ( $conditions as $key => $condition ) {
				if ( ! empty( $condition['condition_query'] ) ) {
					if ( in_array( $condition['condition_type'], array( 'product', 'post_id', 'project_id' ), true ) ) {
						$post = get_post( $condition['condition_query'] );

						$conditions[ $key ]['condition_query_text'] = $post->post_title . ' (ID: ' . $post->ID . ')';
					} elseif ( 'post_format' === $condition['condition_type'] ) {
						$post_formats = get_post_format_strings();
						if ( isset( $post_formats[ $condition['condition_query'] ] ) ) {
							$conditions[ $key ]['condition_query_text'] = $post_formats[ $condition['condition_query'] ];
						}
					} elseif ( 'product_attr' === $condition['condition_type'] || 'filtered_product_term' === $condition['condition_type'] ) {
						$taxonomy = get_taxonomy( $condition['condition_query'] );

						if ( $taxonomy ) {
							$conditions[ $key ]['condition_query_text'] = $taxonomy->labels->singular_name . ' (Tax: ' . $taxonomy->name . ')';
						} else {
							$conditions[ $key ]['condition_query_text'] = '';
						}
					} elseif ( 'product_type' === $condition['condition_type'] ) {
						$conditions[ $key ]['condition_query_text'] = wc_get_product_types()[ $condition['condition_query'] ];
					} elseif ( 'order_payment_gateway' === $condition['condition_type'] ) {
						if ( woodmart_woocommerce_installed() ) {
							foreach ( WC()->payment_gateways()->payment_gateways() as $gateway ) {
								if ( $gateway->id !== $condition['condition_query'] ) {
									continue;
								}

								$conditions[ $key ]['condition_query_text'] = $gateway->get_title();
								break;
							}
						}
					} elseif ( 'order_shipping_method' === $condition['condition_type'] ) {
						if ( woodmart_woocommerce_installed() ) {
							foreach ( WC()->shipping()->get_shipping_methods() as $method_id => $method ) {
								if ( $method_id !== $condition['condition_query'] ) {
									continue;
								}

								$conditions[ $key ]['condition_query_text'] = $method->get_method_title();
								break;
							}
						}
					} elseif ( 'order_shipping_method' === $condition['condition_type'] ) {
						if ( woodmart_woocommerce_installed() ) {
							foreach ( WC()->shipping()->get_shipping_methods() as $method_id => $method ) {
								if ( $method_id !== $condition['condition_query'] ) {
									continue;
								}

								$conditions[ $key ]['condition_query_text'] = $method->get_method_title();
								break;
							}
						}
					} elseif ( 'order_shipping_country' === $condition['condition_type'] || 'order_billing_country' === $condition['condition_type'] ) {
						if ( woodmart_woocommerce_installed() ) {
							$countries = WC()->countries->get_allowed_countries();

							foreach ( $countries as $code => $name ) {
								if ( ! in_array( $code, $condition['condition_query'], true ) ) {
									continue;
								}

								$conditions[ $key ]['condition_query_text'][] = $name;
							}
						}
					} else {
						$term = get_term( $condition['condition_query'] );

						if ( $term ) {
							$conditions[ $key ]['condition_query_text'] = $term->name . ' (ID: ' . $term->term_id . ')';
						} else {
							$conditions[ $key ]['condition_query_text'] = '';
						}
					}
				}
			}
		}

		ob_start();

		$this->get_template(
			'edit-conditions',
			array(
				'admin'      => $this,
				'conditions' => $conditions,
				'type'       => $type,
				'post_id'    => $post_id,
			)
		);

		return ob_get_clean();
	}

	/**
	 * Interface.
	 *
	 * @param mixed $views Default views.
	 *
	 * @return mixed
	 */
	public function print_interface( $views ) {
		$this->enqueue_scripts();

		$this->get_template( 'interface', array( 'admin' => $this ) );

		return $views;
	}

	/**
	 * Print predefined layouts.
	 */
	public function get_predefined_layouts() {
		$layouts = array(
			'shop_archive'             => array(
				'layout-1'  => array(
					'url' => WOODMART_DEMO_URL . 'shop/?opts=product_archive_layout_1',
				),
				'layout-2'  => array(
					'url' => WOODMART_DEMO_URL . 'shop/?opts=product_archive_layout_2',
				),
				'layout-3'  => array(
					'url' => WOODMART_DEMO_URL . 'shop/?opts=product_archive_layout_3',
				),
				'layout-4'  => array(
					'url' => WOODMART_DEMO_URL . 'shop/?opts=product_archive_layout_4',
				),
				'layout-5'  => array(
					'url' => WOODMART_DEMO_URL . 'shop/',
				),
				'layout-6'  => array(
					'url' => WOODMART_DEMO_URL . 'shop/?opts=product_archive_layout_5',
				),
				'layout-7'  => array(
					'url' => WOODMART_DEMO_URL . 'shop/?opts=product_archive_layout_6',
				),
				// Megamarket.
				'layout-8'  => array(
					'url' => WOODMART_DEMO_URL . 'megamarket/all-products/',
				),
				'layout-9'  => array(
					'url' => WOODMART_DEMO_URL . 'megamarket/product-category/flooring/',
				),
				'layout-10' => array(
					'url' => WOODMART_DEMO_URL . 'megamarket/product-category/tools/',
				),
				// Accessories.
				'layout-11' => array(
					'url' => WOODMART_DEMO_URL . 'accessories/product-category/cases/',
				),
				'layout-12' => array(
					'url' => WOODMART_DEMO_URL . 'accessories/shop/?filter_brand=anker',
				),
				'layout-13' => array(
					'url' => WOODMART_DEMO_URL . 'accessories/shop/',
				),
				// Mega-electronics.
				'layout-14' => array(
					'url' => WOODMART_DEMO_URL . 'mega-electronics/product-category/hardware-components/',
				),
			),
			'single_product'           => array(
				'layout-1'  => array(
					'url' => WOODMART_DEMO_URL . 'shop/lighting/bolla-gervasoni/?opts=single_product_layout_5',
				),
				'layout-2'  => array(
					'url' => WOODMART_DEMO_URL . 'shop/furniture/vivant-janus-charles/?opts=single_product_layout_1',
				),
				'layout-3'  => array(
					'url' => WOODMART_DEMO_URL . 'shop/furniture/sculptures-jeux/?opts=single_product_layout_2',
				),
				'layout-4'  => array(
					'url' => WOODMART_DEMO_URL . 'shop/furniture/slat-bench/?opts=single_product_layout_3',
				),
				'layout-5'  => array(
					'url' => WOODMART_DEMO_URL . 'shop/furniture/feelgood-designs/?opts=single_product_layout_4',
				),
				'layout-6'  => array(
					'url' => WOODMART_DEMO_URL . 'shop/toys/augue-adipiscing-euismod/?opts=single_product_layout_6',
				),
				'layout-7'  => array(
					'url' => WOODMART_DEMO_URL . 'shop/furniture/reflect-chest-of-drawers/?opts=single_product_layout_7',
				),
				'layout-8'  => array(
					'url' => WOODMART_DEMO_URL . 'shop/furniture/char-with-love/?opts=single_product_layout_8',
				),
				'layout-9'  => array(
					'url' => WOODMART_DEMO_URL . 'shop/furniture/euismod-aliquam-parturient/?opts=single_product_layout_9',
				),
				// Megamarket.
				'layout-10' => array(
					'url' => WOODMART_DEMO_URL . 'megamarket/product/rectangular-sink/',
				),
				// Accessories.
				'layout-11' => array(
					'url' => WOODMART_DEMO_URL . 'accessories/product/iphone-12-pro-moment-case-blue/',
				),
				// Mega-electronics.
				'layout-12' => array(
					'url' => WOODMART_DEMO_URL . 'mega-electronics/product/apple-macbook-pro-16-m1-pro-2/',
				),
			),
			'cart'                     => array(
				'layout-1' => array(),
				'layout-3' => array(),
			),
			'checkout_form'            => array(
				'layout-1' => array(),
				'layout-2' => array(),
				// Megamarket.
				'layout-3' => array(),
				// Accessories.
				'layout-4' => array(),
			),
			'checkout_content'         => array(
				'layout-2' => array(),
				// Accessories.
				'layout-3' => array(),
			),
			'thank_you_page'           => array(
				'layout-1' => array(),
			),
			'blog_archive'             => array(
				'layout-1' => array(),
				'layout-2' => array(),
			),
			'portfolio_archive'        => array(
				'layout-1' => array(),
				'layout-2' => array(),
			),
			'single_post'              => array(
				'layout-1' => array(),
				'layout-2' => array(),
			),
			'single_portfolio'         => array(
				'layout-1' => array(),
			),
			'my_account_page'          => array(
				'layout-1' => array(),
			),
			'my_account_auth'          => array(
				'layout-1' => array(),
			),
			'my_account_lost_password' => array(
				'layout-1' => array(),
			),
			'product_loop_item'        => array(
				'layout-1'  => array(),
				'layout-2'  => array(),
				'layout-3'  => array(),
				'layout-4'  => array(),
				'layout-5'  => array(),
				'layout-6'  => array(),
				'layout-7'  => array(),
				'layout-8'  => array(),
				'layout-9'  => array(),
				'layout-10' => array(),
				'layout-11' => array(),
				'layout-12' => array(),
				'layout-13' => array(),
				'layout-14' => array(),
				'layout-15' => array(),
				'layout-16' => array(),
				'layout-17' => array(),
				'layout-18' => array(),
				'layout-19' => array(),
				'layout-20' => array(),
				'layout-21' => array(),
				'layout-22' => array(),
				'layout-23' => array(),
			),
		);

		$this->get_template(
			'predefined-layouts',
			array(
				'layouts' => $layouts,
			)
		);
	}

	/**
	 * Print condition template.
	 */
	public function print_condition_template() {
		$this->get_template( 'condition' );
	}

	/**
	 * Print layout form.
	 */
	public function get_form() {
		ob_start();

		$this->get_template(
			'create-form',
			array(
				'layout_types' => $this->layout_types,
				'admin'        => $this,
			)
		);

		return ob_get_clean();
	}

	/**
	 * Print layout tabs.
	 */
	public function print_tabs() {
		$tabs = array(
			'all' => esc_html__( 'All', 'woodmart' ),
		) + $this->layout_types;

		if ( woodmart_woocommerce_installed() ) {
			$tabs = array_slice( $tabs, 0, 4, true ) +
				array( 'checkout' => esc_html__( 'Checkout', 'woodmart' ) ) +
				array_slice( $tabs, 4, null, true );

			$tabs = array_slice( $tabs, 0, 5, true ) +
			array( 'my_account' => esc_html__( 'My account', 'woodmart' ) ) +
			array_slice( $tabs, 5, null, true );

			unset( $tabs['my_account_auth'] );
			unset( $tabs['my_account_page'] );
			unset( $tabs['my_account_lost_password'] );
			unset( $tabs['checkout_content'] );
			unset( $tabs['checkout_form'] );
			unset( $tabs['thank_you_page'] );
			unset( $tabs['empty_cart'] );
		}

		if ( isset( $tabs['single_post'] ) ) {
			$keys  = array_keys( $tabs );
			$index = array_search( 'single_post', $keys, true );

			$tabs = array_slice( $tabs, 0, $index, true ) + array( 'post' => esc_html__( 'Single post', 'woodmart' ) ) + array_slice( $tabs, $index + 1, null, true );

			unset( $tabs['single_post'] );
			unset( $tabs['single_portfolio'] );
		}

		if ( isset( $tabs['blog_archive'] ) ) {
			$keys  = array_keys( $tabs );
			$index = array_search( 'blog_archive', $keys, true );

			$tabs = array_slice( $tabs, 0, $index, true ) + array( 'archive' => esc_html__( 'Posts archive', 'woodmart' ) ) + array_slice( $tabs, $index + 1, null, true );

			unset( $tabs['blog_archive'] );
			unset( $tabs['portfolio_archive'] );
		}

		if ( isset( $tabs['product_loop_item'] ) ) {
			unset( $tabs['product_loop_item'] );
		}

		$tabs['loop_item'] = esc_html__( 'Loop item', 'woodmart' );

		$current_tab = 'all';

		if ( ! empty( $_GET['wd_layout_type_tab'] ) ) { // phpcs:ignore
			$current_tab = $_GET['wd_layout_type_tab']; // phpcs:ignore
		}

		if ( woodmart_woocommerce_installed() && ( 'checkout_content' === $current_tab || 'checkout_form' === $current_tab || 'thank_you_page' === $current_tab ) ) {
			$current_tab = 'checkout';
		}

		if ( woodmart_woocommerce_installed() && 'empty_cart' === $current_tab ) {
			$current_tab = 'cart';
		}

		$base_url = add_query_arg(
			array(
				'post_type' => $this->post_type,
			),
			admin_url( 'edit.php' )
		);

		$this->get_template(
			'tabs',
			array(
				'tabs'        => $tabs,
				'current_tab' => $current_tab,
				'base_url'    => $base_url,
			)
		);
	}

	/**
	 * Add localized settings.
	 *
	 * @param array $settings Settings.
	 * @return array
	 */
	public function add_localized_settings( $settings ) {
		return array_merge(
			$settings,
			array(
				'layout_text'    => esc_html__( 'layout', 'woodmart' ),
				'creation_error' => esc_html__( 'Something went wrong with the creation of the layout!', 'woodmart' ),
				'min_max_error'  => esc_html__( 'The minimum value must be less than the maximum value!', 'woodmart' ),
				'editing_error'  => esc_html__( 'Something went wrong with editing the layout!', 'woodmart' ),
				'success_save'   => esc_html__( 'Conditions has been successfully saved', 'woodmart' ),
			)
		);
	}

	/**
	 * Add pages to dashboard menu.
	 *
	 * @return void
	 */
	public function add_pages_to_dashboard_menu() {
		global $submenu;

		if ( ! empty( $submenu['edit.php?post_type=woodmart_layout'] ) ) {
			foreach ( $submenu['edit.php?post_type=woodmart_layout'] as $key => $value ) {
				if ( 'post-new.php?post_type=woodmart_layout' === $value[2] ) {
					$submenu['edit.php?post_type=woodmart_layout'][ $key ][2] = 'edit.php?post_type=woodmart_layout&create_template'; // phpcs:ignore
				}
			}
		}
	}

	/**
	 * Set gutenberg editor.
	 *
	 * @param boolean $is_enable Is gutenberg enabled.
	 * @param string  $post_type Post type.
	 * @return true
	 */
	public function set_gutenberg_editor( $is_enable, $post_type ) {
		if ( $is_enable || 'woodmart_layout' !== $post_type || 'wpb' !== woodmart_get_current_page_builder() ) {
			return $is_enable;
		}

		$post_id = isset( $_GET['post'] ) ? absint( $_GET['post'] ) : 0; // phpcs:ignore

		if ( 'product_loop_item' === get_post_meta( $post_id, $this->type_meta_key, true ) ) {
			return true;
		}

		return $is_enable;
	}
}

Admin::get_instance();

Youez - 2016 - github.com/yon3zu
LinuXploit