You are here

public function CleanState::getList in Feeds 8.3

Returns the list of entity ID's.

Return value

array An array of entity ID's.

Overrides CleanStateInterface::getList

1 call to CleanState::getList()
CleanState::getIterator in src/Feeds/State/CleanState.php

File

src/Feeds/State/CleanState.php, line 118

Class

CleanState
State for the clean stage.

Namespace

Drupal\feeds\Feeds\State

Code

public function getList() {

  // Get all ID's.
  return $this->connection
    ->select(static::TABLE_NAME)
    ->fields(static::TABLE_NAME, [
    'entity_id',
  ])
    ->condition('feed_id', $this->feedId)
    ->execute()
    ->fetchCol();
}