function BlockCustomTranslation::fields

Same name and namespace in other branches
  1. 9 core/modules/block_content/src/Plugin/migrate/source/d7/BlockCustomTranslation.php \Drupal\block_content\Plugin\migrate\source\d7\BlockCustomTranslation::fields()
  2. 8.9.x core/modules/block_content/src/Plugin/migrate/source/d7/BlockCustomTranslation.php \Drupal\block_content\Plugin\migrate\source\d7\BlockCustomTranslation::fields()
  3. 10 core/modules/block_content/src/Plugin/migrate/source/d7/BlockCustomTranslation.php \Drupal\block_content\Plugin\migrate\source\d7\BlockCustomTranslation::fields()

Overrides MigrateSourceInterface::fields

File

core/modules/block_content/src/Plugin/migrate/source/d7/BlockCustomTranslation.php, line 80

Class

BlockCustomTranslation
Drupal 7 i18n content block translations source from database.

Namespace

Drupal\block_content\Plugin\migrate\source\d7

Code

public function fields() {
    return [
        'bid' => $this->t('The block numeric identifier.'),
        'format' => $this->t('Input format of the content block/box content.'),
        'lid' => $this->t('i18n_string table id'),
        'language' => $this->t('Language for this field.'),
        'property' => $this->t('Block property'),
        'translation' => $this->t('The translation of the value of "property".'),
        'title' => $this->t('Block title.'),
        'title_translated' => $this->t('Block title translation.'),
        'body' => $this->t('Block body.'),
        'body_translated' => $this->t('Block body translation.'),
    ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.