class Box

Same name and namespace in other branches
  1. 11.x core/modules/block_content/src/Plugin/migrate/source/d6/Box.php \Drupal\block_content\Plugin\migrate\source\d6\Box

Drupal 6 block source from database.

For available configuration keys, refer to the parent classes.

Plugin annotation


@MigrateSource(
  id = "d6_box",
  source_module = "block"
)

Hierarchy

Expanded class hierarchy of Box

See also

\Drupal\migrate\Plugin\migrate\source\SqlBase

\Drupal\migrate\Plugin\migrate\source\SourcePluginBase

1 string reference to 'Box'
xa0.php in core/lib/Drupal/Component/Transliteration/data/xa0.php

File

core/modules/block_content/src/Plugin/migrate/source/d6/Box.php, line 20

Namespace

Drupal\block_content\Plugin\migrate\source\d6
View source
class Box extends DrupalSqlBase {
  
  /**
   * {@inheritdoc}
   */
  public function query() {
    $query = $this->select('boxes', 'b')
      ->fields('b', [
      'bid',
      'body',
      'info',
      'format',
    ]);
    $query->orderBy('b.bid');
    return $query;
  }
  
  /**
   * {@inheritdoc}
   */
  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.'),
    ];
  }
  
  /**
   * {@inheritdoc}
   */
  public function getIds() {
    $ids['bid']['type'] = 'integer';
    return $ids;
  }

}

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