QueryBatchTest.php
Namespace
Drupal\migrate_query_batch_test\Plugin\migrate\sourceFile
- 
              core/modules/ migrate/ tests/ modules/ migrate_query_batch_test/ src/ Plugin/ migrate/ source/ QueryBatchTest.php 
View source
<?php
declare (strict_types=1);
namespace Drupal\migrate_query_batch_test\Plugin\migrate\source;
use Drupal\migrate\Attribute\MigrateSource;
use Drupal\migrate\Plugin\migrate\source\SqlBase;
/**
 * Source plugin for migration high water tests.
 */
class QueryBatchTest extends SqlBase {
  
  /**
   * {@inheritdoc}
   */
  public function query() {
    return $this->select('query_batch_test', 'q')
      ->fields('q');
  }
  
  /**
   * {@inheritdoc}
   */
  public function fields() {
    $fields = [
      'id' => 'Id',
      'data' => 'data',
    ];
    return $fields;
  }
  
  /**
   * {@inheritdoc}
   */
  public function getIds() {
    return [
      'id' => [
        'type' => 'integer',
      ],
    ];
  }
}Classes
| Title | Deprecated | Summary | 
|---|---|---|
| QueryBatchTest | Source plugin for migration high water tests. | 
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
