function WorkspaceAssociation::getTrackedEntities

Retrieves the entities tracked by a given workspace.

Parameters

string $workspace_id: The ID of the workspace.

string|null $entity_type_id: (optional) An entity type ID to filter the results by. Defaults to NULL.

int[]|string[]|null $entity_ids: (optional) An array of entity IDs to filter the results by. Defaults to NULL.

Return value

array Returns a multidimensional array where the first level keys are entity type IDs and the values are an array of entity IDs keyed by revision IDs.

Overrides WorkspaceAssociationInterface::getTrackedEntities

File

core/modules/workspaces/src/WorkspaceAssociation.php, line 41

Class

WorkspaceAssociation
Provides a class for CRUD operations on workspace associations.

Namespace

Drupal\workspaces

Code

public function getTrackedEntities($workspace_id, $entity_type_id = NULL, $entity_ids = NULL) {
  return $this->workspaceTracker
    ->getTrackedEntities($workspace_id, $entity_type_id, $entity_ids);
}

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