PathFieldProcessor.php

Namespace

Drupal\tmgmt_content

File

sources/content/src/PathFieldProcessor.php
View source
<?php

namespace Drupal\tmgmt_content;

use Drupal\Core\Field\FieldItemListInterface;
use Drupal\Core\Render\Element;
use Drupal\pathauto\PathautoFieldItemList;
use Drupal\pathauto\PathautoState;

/**
 * Field processor for the metatags field.
 */
class PathFieldProcessor extends DefaultFieldProcessor {

  /**
   * {@inheritdoc}
   */
  public function extractTranslatableData(FieldItemListInterface $field) {
    $data = parent::extractTranslatableData($field);
    foreach (Element::children($data) as $key) {

      // If pathauto is enabled, do not attempt to translate the path, pathauto
      // will deal with it on the translation.
      if ($field instanceof PathautoFieldItemList && $field->pathauto == PathautoState::CREATE) {
        if (!empty($data[$key]['alias']['#translate'])) {
          $data[$key]['alias']['#translate'] = FALSE;
        }
      }
      if (!empty($data[$key]['langcode']['#translate'])) {
        $data[$key]['langcode']['#translate'] = FALSE;
      }
    }
    return $data;
  }

}

Classes

Namesort descending Description
PathFieldProcessor Field processor for the metatags field.