You are here

public function BlockTranslation::fields in Drupal 9

Same name in this branch
  1. 9 core/modules/block/src/Plugin/migrate/source/d6/BlockTranslation.php \Drupal\block\Plugin\migrate\source\d6\BlockTranslation::fields()
  2. 9 core/modules/block/src/Plugin/migrate/source/d7/BlockTranslation.php \Drupal\block\Plugin\migrate\source\d7\BlockTranslation::fields()
Same name and namespace in other branches
  1. 8 core/modules/block/src/Plugin/migrate/source/d7/BlockTranslation.php \Drupal\block\Plugin\migrate\source\d7\BlockTranslation::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 Block::fields

File

core/modules/block/src/Plugin/migrate/source/d7/BlockTranslation.php, line 73

Class

BlockTranslation
Gets i18n block data from source database.

Namespace

Drupal\block\Plugin\migrate\source\d7

Code

public function fields() {
  return [
    'bid' => $this
      ->t('The block numeric identifier.'),
    'module' => $this
      ->t('The module providing the block.'),
    'delta' => $this
      ->t("The block's delta."),
    'theme' => $this
      ->t('Which theme the block is placed in.'),
    'status' => $this
      ->t('Block enabled status'),
    'weight' => $this
      ->t('Block weight within region'),
    'region' => $this
      ->t('Theme region within which the block is set'),
    'visibility' => $this
      ->t('Visibility'),
    'pages' => $this
      ->t('Pages list.'),
    'title' => $this
      ->t('Block title.'),
    'cache' => $this
      ->t('Cache rule.'),
    'i18n_mode' => $this
      ->t('Multilingual mode'),
    'lid' => $this
      ->t('Language string ID'),
    'textgroup' => $this
      ->t('A module defined group of translations'),
    'context' => $this
      ->t('Full string ID for quick search: type:objectid:property.'),
    'objectid' => $this
      ->t('Object ID'),
    'type' => $this
      ->t('Object type for this string'),
    'property' => $this
      ->t('Object property for this string'),
    'objectindex' => $this
      ->t('Integer value of Object ID'),
    'format' => $this
      ->t('The {filter_format}.format of the string'),
    'translation' => $this
      ->t('Translation'),
    'language' => $this
      ->t('Language code'),
    'plid' => $this
      ->t('Parent lid'),
    'plural' => $this
      ->t('Plural index number'),
    'i18n_status' => $this
      ->t('Translation needs update'),
  ];
}