function BlockCustom::fields

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

Overrides MigrateSourceInterface::fields

File

core/modules/block_content/src/Plugin/migrate/source/d7/BlockCustom.php, line 32

Class

BlockCustom
Drupal 7 custom block source from database.

Namespace

Drupal\block_content\Plugin\migrate\source\d7

Code

public function fields() {
    return [
        'bid' => $this->t('The numeric identifier of the block/box'),
        'body' => $this->t('The block/box content'),
        'info' => $this->t('Admin title of the block/box.'),
        'format' => $this->t('Input format of the custom block/box content.'),
    ];
}

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