plugin updates

This commit is contained in:
Tony Volpe
2024-11-15 13:53:04 -05:00
parent 1293d604ca
commit 0238f0c4ca
2009 changed files with 163492 additions and 89543 deletions

View File

@@ -0,0 +1,35 @@
<?php
/**
* Brand description
*
* This template can be overridden by copying it to yourtheme/woocommerce/brands/brand-description.php.
*
* HOWEVER, on occasion WooCommerce will need to update template files and you
* (the theme developer) will need to copy the new files to your theme to
* maintain compatibility. We try to do this as little as possible, but it does
* happen. When this occurs the version of the template file will be bumped and
* the readme will list any important changes.
*
* @see https://woocommerce.com/document/template-structure/
* @package WooCommerce\Templates
* @version 9.4.0
*/
declare( strict_types = 1);
$image_size = wc_get_image_size( 'shop_catalog' ); ?>
<div class="term-description brand-description">
<?php if ( $thumbnail ) : ?>
<img src="<?php echo esc_url( $thumbnail ); ?>" alt="Thumbnail" class="wp-post-image alignright fr brand-thumbnail" width="<?php echo esc_attr( $image_size['width'] ); ?>" />
<?php endif; ?>
<div class="text">
<?php echo do_shortcode( wpautop( wptexturize( term_description() ) ) ); ?>
</div>
</div>

View File

@@ -0,0 +1,63 @@
<?php
/**
* Brand A-Z listing
*
* This template can be overridden by copying it to yourtheme/woocommerce/brands/shortcodes/brands-a-z.php.
*
* HOWEVER, on occasion WooCommerce will need to update template files and you
* (the theme developer) will need to copy the new files to your theme to
* maintain compatibility. We try to do this as little as possible, but it does
* happen. When this occurs the version of the template file will be bumped and
* the readme will list any important changes.
*
* @see https://woocommerce.com/document/template-structure/
* @package WooCommerce\Templates
* @usedby [product_brand_list]
* @version 9.4.0
*/
declare( strict_types = 1);
?>
<div id="brands_a_z">
<ul class="brands_index">
<?php
foreach ( $index as $i ) {
if ( isset( $product_brands[ $i ] ) ) {
echo '<li><a href="#brands-' . esc_attr( $i ) . '">' . esc_html( $i ) . '</a></li>';
} elseif ( $show_empty ) {
echo '<li><span>' . esc_html( $i ) . '</span></li>';
}
}
?>
</ul>
<?php
foreach ( $index as $i ) {
if ( isset( $product_brands[ $i ] ) ) {
?>
<h3 id="brands-<?php echo esc_attr( $i ); ?>"><?php echo esc_html( $i ); ?></h3>
<ul class="brands">
<?php
foreach ( $product_brands[ $i ] as $brand ) {
printf(
'<li><a href="%s">%s</a></li>',
esc_url( get_term_link( $brand->slug, 'product_brand' ) ),
esc_html( $brand->name )
);
}
?>
</ul>
<?php if ( $show_top_links ) { ?>
<a class="top" href="#brands_a_z"><?php esc_html_e( '&uarr; Top', 'woocommerce' ); ?></a>
<?php } ?>
<?php
}
}
?>
</div>

View File

@@ -0,0 +1,38 @@
<?php
/**
* Single Brand
*
* This template can be overridden by copying it to yourtheme/woocommerce/brands/shortcodes/single-brand.php.
*
* HOWEVER, on occasion WooCommerce will need to update template files and you
* (the theme developer) will need to copy the new files to your theme to
* maintain compatibility. We try to do this as little as possible, but it does
* happen. When this occurs the version of the template file will be bumped and
* the readme will list any important changes.
*
*
* @see WC_Brands::output_product_brand()
*
* @var WP_Term $term The term object.
* @var string $thumbnail The URL to the brand thumbnail.
* @var string $class The class to apply to the thumbnail image.
* @var string $width The width of the image.
* @var string $height The height of the image.
*
* Ignore space indent sniff for this file, as it is used for alignment rather than actual indents.
* phpcs:ignoreFile Generic.WhiteSpace.DisallowSpaceIndent
*
* @see https://woocommerce.com/document/template-structure/
* @package WooCommerce\Templates
* @usedby [product_brand]
* @version 9.4.0
*/
declare( strict_types = 1);
?>
<a href="<?php echo esc_url( get_term_link( $term, 'product_brand' ) ); ?>">
<img src="<?php echo esc_url( $thumbnail ); ?>"
alt="<?php echo esc_attr( $term->name ); ?>"
class="<?php echo esc_attr( $class ); ?>"
style="width: <?php echo esc_attr( $width ); ?>; height: <?php echo esc_attr( $height ); ?>;"/>
</a>

View File

@@ -0,0 +1,12 @@
<?php // phpcs:ignore WordPress.Files.FileName.NotHyphenatedLowercase for backwards compatibility.
/**
* Use the WooCommerce archive template for brand taxonomy pages
*
* @package WooCommerce\Templates
* @version 9.4.0
*/
declare( strict_types = 1);
wc_get_template( 'archive-product.php' );

View File

@@ -0,0 +1,27 @@
<?php
/**
* Show a brands description when on a taxonomy page
*
* This template can be overridden by copying it to yourtheme/woocommerce/brands/widgets/brand-description.php.
*
* HOWEVER, on occasion WooCommerce will need to update template files and you
* (the theme developer) will need to copy the new files to your theme to
* maintain compatibility. We try to do this as little as possible, but it does
* happen. When this occurs the version of the template file will be bumped and
* the readme will list any important changes.
*
* @see https://woocommerce.com/document/template-structure/
* @package WooCommerce\Templates
* @version 9.4.0
*/
declare( strict_types = 1);
global $woocommerce;
if ( $thumbnail ) {
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
echo wc_get_brand_thumbnail_image( $brand );
}
echo wp_kses_post( wpautop( wptexturize( term_description() ) ) );

View File

@@ -0,0 +1,58 @@
<?php
/**
* Show a grid of thumbnails
*
* This template can be overridden by copying it to yourtheme/woocommerce/brands/widgets/brand-thumbnails-description.php.
*
* HOWEVER, on occasion WooCommerce will need to update template files and you
* (the theme developer) will need to copy the new files to your theme to
* maintain compatibility. We try to do this as little as possible, but it does
* happen. When this occurs the version of the template file will be bumped and
* the readme will list any important changes.
*
* @see https://woocommerce.com/document/template-structure/
* @package WooCommerce\Templates
* @version 9.4.0
*/
declare( strict_types = 1);
?>
<ul class="brand-thumbnails-description">
<?php
foreach ( $brands as $index => $brand ) :
/**
* Filter the brand's thumbnail size.
*
* @since 9.4.0
* @param string $size Defaults to 'shop_catalog'
*/
$thumbnail = wc_get_brand_thumbnail_url( $brand->term_id, apply_filters( 'woocommerce_brand_thumbnail_size', 'shop_catalog' ) );
if ( ! $thumbnail ) {
$thumbnail = wc_placeholder_img_src();
}
$class = '';
if ( 0 === $index || 0 === $index % $columns ) {
$class = 'first';
} elseif ( 0 === ( $index + 1 ) % $columns ) {
$class = 'last';
}
$width = floor( ( ( 100 - ( ( $columns - 1 ) * 2 ) ) / $columns ) * 100 ) / 100;
?>
<li class="<?php echo esc_attr( $class ); ?>" style="width: <?php echo esc_attr( $width ); ?>%;">
<a href="<?php echo esc_url( get_term_link( $brand->slug, 'product_brand' ) ); ?>" title="<?php echo esc_attr( $brand->name ); ?>" class="term-thumbnail">
<img src="<?php echo esc_url( $thumbnail ); ?>" alt="<?php echo esc_attr( $brand->name ); ?>" />
</a>
<div id="term-<?php echo esc_attr( $brand->term_id ); ?>" class="term-description">
<?php echo wp_kses_post( wpautop( wptexturize( $brand->description ) ) ); ?>
</div>
</li>
<?php endforeach; ?>
</ul>

View File

@@ -0,0 +1,45 @@
<?php
/**
* Show a grid of thumbnails
*
* This template can be overridden by copying it to yourtheme/woocommerce/brands/widgets/brand-thumbnails.php.
*
* HOWEVER, on occasion WooCommerce will need to update template files and you
* (the theme developer) will need to copy the new files to your theme to
* maintain compatibility. We try to do this as little as possible, but it does
* happen. When this occurs the version of the template file will be bumped and
* the readme will list any important changes.
*
* @see https://woocommerce.com/document/template-structure/
* @package WooCommerce\Templates
* @version 9.4.0
*/
declare( strict_types = 1);
$wrapper_class = 'fluid-columns';
if ( ! $fluid_columns && in_array( $columns, array( 1, 2, 3, 4, 5, 6 ), true ) ) {
$wrapper_class = 'columns-' . $columns;
}
?>
<ul class="brand-thumbnails <?php echo esc_attr( $wrapper_class ); ?>">
<?php
foreach ( array_values( $brands ) as $index => $brand ) :
$class = '';
if ( 0 === $index || 0 === $index % $columns ) {
$class = 'first';
} elseif ( 0 === ( $index + 1 ) % $columns ) {
$class = 'last';
}
?>
<li class="<?php echo esc_attr( $class ); ?>">
<a href="<?php echo esc_url( get_term_link( $brand->slug, 'product_brand' ) ); ?>" title="<?php echo esc_attr( $brand->name ); ?>">
<?php echo wc_get_brand_thumbnail_image( $brand ); // phpcs:ignore WordPress.Security.EscapeOutput ?>
</a>
</li>
<?php endforeach; ?>
</ul>