You are here

public function RepositoryHandlerManager::processDefinition in Workspace 8.2

Performs extra processing on plugin definitions.

By default we add defaults for the type to the definition. If a type has additional processing logic they can do that by replacing or extending the method.

Overrides DefaultPluginManager::processDefinition

File

src/RepositoryHandlerManager.php, line 42

Class

RepositoryHandlerManager
Provides a plugin manager for Repository Handlers.

Namespace

Drupal\workspace

Code

public function processDefinition(&$definition, $plugin_id) {
  parent::processDefinition($definition, $plugin_id);
  $this
    ->processDefinitionCategory($definition);
}