You are here

public function DevelDumperPluginManager::processDefinition in Devel 4.x

Same name and namespace in other branches
  1. 8.3 src/DevelDumperPluginManager.php \Drupal\devel\DevelDumperPluginManager::processDefinition()
  2. 8 src/DevelDumperPluginManager.php \Drupal\devel\DevelDumperPluginManager::processDefinition()
  3. 8.2 src/DevelDumperPluginManager.php \Drupal\devel\DevelDumperPluginManager::processDefinition()

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/DevelDumperPluginManager.php, line 40

Class

DevelDumperPluginManager
Plugin type manager for Devel Dumper plugins.

Namespace

Drupal\devel

Code

public function processDefinition(&$definition, $plugin_id) {
  parent::processDefinition($definition, $plugin_id);
  $definition['supported'] = (bool) call_user_func([
    $definition['class'],
    'checkRequirements',
  ]);
}