You are here

public function WorkspaceRepository::getDescendantsAndSelf in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/workspaces/src/WorkspaceRepository.php \Drupal\workspaces\WorkspaceRepository::getDescendantsAndSelf()
  2. 9 core/modules/workspaces/src/WorkspaceRepository.php \Drupal\workspaces\WorkspaceRepository::getDescendantsAndSelf()

File

core/modules/workspaces/src/WorkspaceRepository.php, line 139

Class

WorkspaceRepository
Provides the default workspace tree lookup operations.

Namespace

Drupal\workspaces

Code

public function getDescendantsAndSelf($workspace_id) {
  return array_merge([
    $workspace_id,
  ], $this
    ->loadTree()[$workspace_id]['descendants']);
}