SqlCountCache.php

Same filename in other branches
  1. 10 core/modules/migrate/tests/modules/migrate_sql_count_cache_test/src/Plugin/migrate/source/SqlCountCache.php
  2. 11.x core/modules/migrate/tests/modules/migrate_sql_count_cache_test/src/Plugin/migrate/source/SqlCountCache.php

Namespace

Drupal\migrate_sql_count_cache_test\Plugin\migrate\source

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' => $this->t('Id'),
        ];
    }
    
    /**
     * {@inheritdoc}
     */
    public function getIds() {
        return [
            'id' => [
                'type' => 'integer',
            ],
        ];
    }
    
    /**
     * {@inheritdoc}
     */
    public function query() {
        return $this->select('source_table', 's')
            ->fields('s', [
            'id',
        ]);
    }

}

Classes

Title Deprecated Summary
SqlCountCache Source plugin for Sql count cache test.

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