You are here

public function CommentEntityTranslation::fields in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/comment/src/Plugin/migrate/source/d7/CommentEntityTranslation.php \Drupal\comment\Plugin\migrate\source\d7\CommentEntityTranslation::fields()
  2. 10 core/modules/comment/src/Plugin/migrate/source/d7/CommentEntityTranslation.php \Drupal\comment\Plugin\migrate\source\d7\CommentEntityTranslation::fields()

Returns available fields on the source.

Return value

array Available fields in the source, keys are the field machine names as used in field mappings, values are descriptions.

Overrides MigrateSourceInterface::fields

File

core/modules/comment/src/Plugin/migrate/source/d7/CommentEntityTranslation.php, line 71

Class

CommentEntityTranslation
Provides Drupal 7 comment entity translation source plugin.

Namespace

Drupal\comment\Plugin\migrate\source\d7

Code

public function fields() {
  return [
    'entity_type' => $this
      ->t('The entity type this translation relates to'),
    'entity_id' => $this
      ->t('The entity ID this translation relates to'),
    'revision_id' => $this
      ->t('The entity revision ID this translation relates to'),
    'language' => $this
      ->t('The target language for this translation.'),
    'source' => $this
      ->t('The source language from which this translation was created.'),
    'uid' => $this
      ->t('The author of this translation.'),
    'status' => $this
      ->t('Boolean indicating whether the translation is published (visible to non-administrators).'),
    'translate' => $this
      ->t('A boolean indicating whether this translation needs to be updated.'),
    'created' => $this
      ->t('The Unix timestamp when the translation was created.'),
    'changed' => $this
      ->t('The Unix timestamp when the translation was most recently saved.'),
    'subject' => $this
      ->t('The comment title.'),
  ];
}