You are here

public function WorkspaceRepositoryInterface::getDescendantsAndSelf in Drupal 8

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

Returns the descendant IDs of the passed-in workspace, including itself.

Parameters

string $workspace_id: A workspace ID.

Return value

string[] An array of descendant workspace IDs, including the passed-in one.

1 method overrides WorkspaceRepositoryInterface::getDescendantsAndSelf()
WorkspaceRepository::getDescendantsAndSelf in core/modules/workspaces/src/WorkspaceRepository.php
Returns the descendant IDs of the passed-in workspace, including itself.

File

core/modules/workspaces/src/WorkspaceRepositoryInterface.php, line 31

Class

WorkspaceRepositoryInterface
Provides an interface for workspace tree lookup operations.

Namespace

Drupal\workspaces

Code

public function getDescendantsAndSelf($workspace_id);