You are here

SqlCountCache.php in Drupal 10

File

core/modules/migrate/tests/modules/migrate_sql_count_cache_test/src/Plugin/migrate/source/SqlCountCache.php
View source
<?php

namespace Drupal\migrate_sql_count_cache_test\Plugin\migrate\source;

use Drupal\migrate\Plugin\migrate\source\SqlBase;

/**
 * Source plugin for Sql count cache test.
 *
 * @MigrateSource(
 *   id = "sql_count_cache"
 * )
 */
class SqlCountCache extends SqlBase {

  /**
   * {@inheritdoc}
   */
  public function fields() {
    return [
      'id' => t('Id'),
    ];
  }

  /**
   * {@inheritdoc}
   */
  public function getIds() {
    return [
      'id' => [
        'type' => 'integer',
      ],
    ];
  }

  /**
   * {@inheritdoc}
   */
  public function query() {
    return $this
      ->select('source_table', 's')
      ->fields('s', [
      'id',
    ]);
  }

}

Classes

Namesort descending Description
SqlCountCache Source plugin for Sql count cache test.