dev/endpoints/endpoint_get_fields/entity_reference-extractor
2024-04-12 17:07:04 +03:00

17 lines
634 B
Plaintext

$category_id = (
$node
->get(self::FIELD_CATEGORY)
->entity) ? intval(\\Drupal::service('entity.repository')
->getTranslationFromContext(
$node->get(self::FIELD_CATEGORY)->entity,
$node->currentTranslation
)->id()) : null;
$category_label = (
$node
->get(self::FIELD_CATEGORY)
->entity) ? \\Drupal::service('entity.repository')
->getTranslationFromContext(
$node->get(self::FIELD_CATEGORY)->entity,
$node->currentTranslation
)->getName() : null;