You are here

public function RepositoryHandlerBase::getDescription in Workspace 8.2

Returns the repository handler plugin description.

Return value

string The description text, which could be a plain string or an object that can be cast to a string.

Overrides RepositoryHandlerInterface::getDescription

File

src/RepositoryHandlerBase.php, line 61

Class

RepositoryHandlerBase
Defines a base RepositoryHandler plugin implementation.

Namespace

Drupal\workspace

Code

public function getDescription() {
  return $this
    ->getPluginDefinition()['description'];
}