commerce_shipping-8.x-2.0-rc2/src/Plugin/Field/FieldFormatter/TrackingLinkFormatter.php
src/Plugin/Field/FieldFormatter/TrackingLinkFormatter.php
<?php
namespace Drupal\commerce_shipping\Plugin\Field\FieldFormatter;
use Drupal\Component\Utility\Xss;
use Drupal\Core\Field\Attribute\FieldFormatter;
use Drupal\Core\Field\FieldDefinitionInterface;
use Drupal\Core\Field\FieldItemListInterface;
use Drupal\Core\Field\FormatterBase;
use Drupal\commerce_shipping\Plugin\Commerce\ShippingMethod\SupportsTrackingInterface;
use Drupal\Core\StringTranslation\TranslatableMarkup;
/**
* Plugin implementation of the 'commerce_tracking_link' formatter.
*/
#[FieldFormatter(
id: 'commerce_tracking_link',
label: new TranslatableMarkup('Tracking link'),
field_types: ['string'],
)]
class TrackingLinkFormatter extends FormatterBase {
/**
* {@inheritdoc}
*/
public function viewElements(FieldItemListInterface $items, $langcode) {
if ($items->isEmpty()) {
return [];
}
/** @var \Drupal\commerce_shipping\Entity\ShipmentInterface $shipment */
$shipment = $items[0]->getEntity();
$shipping_method = $shipment->getShippingMethod();
if (!$shipping_method) {
return [['#markup' => Xss::filterAdmin((string) $shipment->getTrackingCode())]];
}
/** @var \Drupal\commerce_shipping\Plugin\Commerce\ShippingMethod\SupportsTrackingInterface $shipping_method_plugin */
$shipping_method_plugin = $shipment->getShippingMethod()->getPlugin();
if (!($shipping_method_plugin instanceof SupportsTrackingInterface)) {
return [['#markup' => Xss::filterAdmin((string) $shipment->getTrackingCode())]];
}
$tracking_url = $shipping_method_plugin->getTrackingUrl($shipment);
if (!$tracking_url) {
return [];
}
$elements = [];
$elements[] = [
'#type' => 'link',
'#title' => $shipment->getTrackingCode(),
'#url' => $tracking_url,
];
return $elements;
}
/**
* {@inheritdoc}
*/
public static function isApplicable(FieldDefinitionInterface $field_definition) {
$entity_type = $field_definition->getTargetEntityTypeId();
$field_name = $field_definition->getName();
return $entity_type == 'commerce_shipment' && $field_name == 'tracking_code';
}
}
