public function DevelLocalTask::getDerivativeDefinitions in Search API Solr 8
Gets the definition of all derivatives of a base plugin.
Parameters
array $base_plugin_definition: The definition array of the base plugin.
Return value
array An array of full derivative definitions keyed on derivative id.
Overrides DeriverBase::getDerivativeDefinitions
See also
getDerivativeDefinition()
File
- src/
Plugin/ Derivative/ DevelLocalTask.php, line 52
Class
- DevelLocalTask
- Provides local task definitions for all entity bundles.
Namespace
Drupal\search_api_solr\Plugin\DerivativeCode
public function getDerivativeDefinitions($base_plugin_definition) {
$this->derivatives = array();
foreach ($this->entityTypeManager
->getDefinitions() as $entity_type_id => $entity_type) {
if ($entity_type
->hasLinkTemplate('devel-solr')) {
$this->derivatives["{$entity_type_id}.devel_solr_tab"] = array(
'route_name' => "entity.{$entity_type_id}.devel_solr",
'weight' => 110,
'title' => $this
->t('Solr'),
'parent_id' => "devel.entities:{$entity_type_id}.devel_tab",
);
}
}
foreach ($this->derivatives as &$entry) {
$entry += $base_plugin_definition;
}
return $this->derivatives;
}