You are here

public function MappedObjectList::setEntityIds in Salesforce Suite 8.4

Same name and namespace in other branches
  1. 5.0.x modules/salesforce_mapping_ui/src/MappedObjectList.php \Drupal\salesforce_mapping_ui\MappedObjectList::setEntityIds()

Set the given entity ids to show only those in a listing of mapped objects.

Parameters

array $ids: The entity ids.

Return value

$this

File

modules/salesforce_mapping_ui/src/MappedObjectList.php, line 135

Class

MappedObjectList
Provides a list controller for salesforce_mapping entity.

Namespace

Drupal\salesforce_mapping_ui

Code

public function setEntityIds(array $ids) {
  $this->entityIds = $ids;
  return $this;
}