You are here

Box.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/block_content/src/Plugin/migrate/source/d6/Box.php

File

core/modules/block_content/src/Plugin/migrate/source/d6/Box.php
View source
<?php

/**
 * @file
 * Contains \Drupal\block_content\Plugin\migrate\source\d6\Box.
 */
namespace Drupal\block_content\Plugin\migrate\source\d6;

use Drupal\migrate_drupal\Plugin\migrate\source\DrupalSqlBase;

/**
 * Drupal 6 block source from database.
 *
 * @MigrateSource(
 *   id = "d6_box"
 * )
 */
class Box extends DrupalSqlBase {

  /**
   * {@inheritdoc}
   */
  public function query() {
    $query = $this
      ->select('boxes', 'b')
      ->fields('b', array(
      'bid',
      'body',
      'info',
      'format',
    ));
    $query
      ->orderBy('bid');
    return $query;
  }

  /**
   * {@inheritdoc}
   */
  public function fields() {
    return array(
      '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;
  }

}

Classes

Namesort descending Description
Box Drupal 6 block source from database.