File: /hosting/kak.bg/web/wp-content/plugins/wp-all-export-pro/src/App/Field/ShippingLength.php
<?php
namespace Wpae\App\Field;
class ShippingLength extends Field
{
const SECTION = 'shipping';
public function getValue($snippetData)
{
$shippingData = $this->feed->getSectionFeedData(self::SECTION);
if($shippingData['dimensions'] == 'useWooCommerceProductValues') {
$currentUnit = get_option('woocommerce_dimension_unit');
$toUnit = $shippingData['convertTo'];
$product = $_product = wc_get_product($this->entry->ID);
if($currentUnit !== $toUnit) {
$length = wc_get_dimension($product->get_length(), $toUnit, $currentUnit);
} else {
$length = $product->get_length();
}
return $length . ' '.$toUnit;
} else {
return $this->replaceSnippetsInValue($shippingData['dimensionsCV'], $snippetData);
}
}
public function getFieldName()
{
return 'shipping_length';
}
}