You are here

protected function MappedObjectList::getEntityIds in Salesforce Suite 8.3

Loads entity IDs using a pager sorted by the entity id.

Return value

array An array of entity IDs.

Overrides EntityListBuilder::getEntityIds

File

modules/salesforce_mapping/src/MappedObjectList.php, line 143

Class

MappedObjectList
Provides a list controller for salesforce_mapping entity.

Namespace

Drupal\salesforce_mapping

Code

protected function getEntityIds() {

  // If we're building a partial list, only query for those entities.
  if (!empty($this->entityIds)) {
    return $this->entityIds;
  }
  return parent::getEntityIds();
}