kollapsminoriteten/wp-content/plugins/jetpack/modules/google-analytics/classes/wp-google-analytics-utils.php

68 lines
1.6 KiB
PHP
Raw Normal View History

2022-06-16 14:01:47 +02:00
<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
2019-11-15 23:26:29 +01:00
/**
2022-06-16 14:01:47 +02:00
* Jetpack_Google_Analytics_Options provides a single interface to module options
*
* @author allendav
*/
2019-11-15 23:26:29 +01:00
/**
2022-06-16 14:01:47 +02:00
* Bail if accessed directly
*/
2019-11-15 23:26:29 +01:00
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
2022-06-16 14:01:47 +02:00
/**
* Jetpack_Google_Analytics_Utils main class.
*/
2019-11-15 23:26:29 +01:00
class Jetpack_Google_Analytics_Utils {
/**
* Gets product categories or varation attributes as a formatted concatenated string
2022-06-16 14:01:47 +02:00
*
* @param WC_Product $product Product to get categories/variations for.
2019-11-15 23:26:29 +01:00
* @return string
*/
public static function get_product_categories_concatenated( $product ) {
if ( ! class_exists( 'WooCommerce' ) ) {
return '';
}
if ( ! $product ) {
return '';
}
$variation_data = $product->is_type( 'variation' ) ? wc_get_product_variation_attributes( $product->get_id() ) : '';
if ( is_array( $variation_data ) && ! empty( $variation_data ) ) {
$line = wc_get_formatted_variation( $variation_data, true );
} else {
2022-06-16 14:01:47 +02:00
$out = array();
2019-11-15 23:26:29 +01:00
$categories = get_the_terms( $product->get_id(), 'product_cat' );
if ( $categories ) {
foreach ( $categories as $category ) {
$out[] = $category->name;
}
}
2022-06-16 14:01:47 +02:00
$line = join( '/', $out );
2019-11-15 23:26:29 +01:00
}
return $line;
}
/**
* Gets a product's SKU with fallback to just ID. IDs are prepended with a hash symbol.
2022-06-16 14:01:47 +02:00
*
* @param WC_Product $product Product to get SKU/ID for.
2019-11-15 23:26:29 +01:00
* @return string
*/
public static function get_product_sku_or_id( $product ) {
if ( ! class_exists( 'WooCommerce' ) ) {
return '';
}
if ( ! $product ) {
return '';
}
return $product->get_sku() ? $product->get_sku() : '#' . $product->get_id();
}
2022-06-16 14:01:47 +02:00
}