File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/AttributesTrait.php.tar
httpdocs/wp-content/plugins/google-listings-and-ads/src/Admin/Product/Attributes/AttributesTrait.php0000644 00000001172 15155674772 0036302 0 ustar 00 var/www/vhosts/uyarreklam.com.tr <?php
declare( strict_types=1 );
namespace Automattic\WooCommerce\GoogleListingsAndAds\Admin\Product\Attributes;
/**
* Trait AttributesTrait
*
* @package Automattic\WooCommerce\GoogleListingsAndAds\Admin\Product\Attributes
*/
trait AttributesTrait {
/**
* Return an array of WooCommerce product types that the Google for WooCommerce tab can be displayed for.
*
* @return array of WooCommerce product types (e.g. 'simple', 'variable', etc.)
*/
protected function get_applicable_product_types(): array {
return apply_filters( 'woocommerce_gla_attributes_tab_applicable_product_types', [ 'simple', 'variable' ] );
}
}