BlockTranslation.php

Same filename in this branch
  1. 11.x core/modules/block/src/Plugin/migrate/source/d7/BlockTranslation.php
Same filename and directory in other branches
  1. 9 core/modules/block/src/Plugin/migrate/source/d6/BlockTranslation.php
  2. 9 core/modules/block/src/Plugin/migrate/source/d7/BlockTranslation.php
  3. 8.9.x core/modules/block/src/Plugin/migrate/source/d6/BlockTranslation.php
  4. 8.9.x core/modules/block/src/Plugin/migrate/source/d7/BlockTranslation.php
  5. 10 core/modules/block/src/Plugin/migrate/source/d6/BlockTranslation.php
  6. 10 core/modules/block/src/Plugin/migrate/source/d7/BlockTranslation.php

Namespace

Drupal\block\Plugin\migrate\source\d6

File

core/modules/block/src/Plugin/migrate/source/d6/BlockTranslation.php

View source
<?php

namespace Drupal\block\Plugin\migrate\source\d6;

use Drupal\block\Plugin\migrate\source\Block;
use Drupal\migrate\Plugin\migrate\source\SourcePluginBase;
use Drupal\migrate\Row;

/**
 * Drupal 6 i18n block data from database.
 *
 * For available configuration keys, refer to the parent classes.
 *
 * @see \Drupal\migrate\Plugin\migrate\source\SqlBase
 * @see \Drupal\migrate\Plugin\migrate\source\SourcePluginBase
 *
 * @MigrateSource(
 *   id = "d6_block_translation",
 *   source_module = "i18nblocks"
 * )
 */
class BlockTranslation extends Block {
  
  /**
   * {@inheritdoc}
   */
  public function query() {
    // Let the parent set the block table to use, but do not use the parent
    // query. Instead build a query so can use an inner join to the selected
    // block table.
    parent::query();
    $query = $this->select('i18n_blocks', 'i18n')
      ->fields('i18n')
      ->fields('b', [
      'bid',
      'module',
      'delta',
      'theme',
      'title',
    ]);
    $query->innerJoin($this->blockTable, 'b', '[b].[module] = [i18n].[module] AND [b].[delta] = [i18n].[delta]');
    return $query;
  }
  
  /**
   * {@inheritdoc}
   */
  public function fields() {
    return [
      'bid' => $this->t('The block numeric identifier.'),
      'ibid' => $this->t('The i18n_blocks block numeric identifier.'),
      'module' => $this->t('The module providing the block.'),
      'delta' => $this->t("The block's delta."),
      'type' => $this->t('Block type'),
      'language' => $this->t('Language for this field.'),
      'theme' => $this->t('Which theme the block is placed in.'),
      'default_theme' => $this->t('The default theme.'),
      'title' => $this->t('Block title.'),
    ];
  }
  
  /**
   * {@inheritdoc}
   */
  public function prepareRow(Row $row) {
    $row->setSourceProperty('default_theme', $this->defaultTheme);
    return SourcePluginBase::prepareRow($row);
  }
  
  /**
   * {@inheritdoc}
   */
  public function getIds() {
    $ids = parent::getIds();
    $ids['module']['alias'] = 'b';
    $ids['delta']['alias'] = 'b';
    $ids['theme']['alias'] = 'b';
    $ids['language']['type'] = 'string';
    return $ids;
  }

}

Classes

Title Deprecated Summary
BlockTranslation Drupal 6 i18n block data from database.

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