class LocalTaskTest
Same name in other branches
- 9 core/modules/system/tests/modules/menu_test/src/Plugin/Derivative/LocalTaskTest.php \Drupal\menu_test\Plugin\Derivative\LocalTaskTest
- 10 core/modules/system/tests/modules/menu_test/src/Plugin/Derivative/LocalTaskTest.php \Drupal\menu_test\Plugin\Derivative\LocalTaskTest
- 11.x core/modules/system/tests/modules/menu_test/src/Plugin/Derivative/LocalTaskTest.php \Drupal\menu_test\Plugin\Derivative\LocalTaskTest
Hierarchy
- class \Drupal\Component\Plugin\Derivative\DeriverBase implements \Drupal\Component\Plugin\Derivative\DeriverInterface
- class \Drupal\menu_test\Plugin\Derivative\LocalTaskTest extends \Drupal\Component\Plugin\Derivative\DeriverBase
Expanded class hierarchy of LocalTaskTest
1 string reference to 'LocalTaskTest'
- menu_test.links.task.yml in core/
modules/ system/ tests/ modules/ menu_test/ menu_test.links.task.yml - core/modules/system/tests/modules/menu_test/menu_test.links.task.yml
File
-
core/
modules/ system/ tests/ modules/ menu_test/ src/ Plugin/ Derivative/ LocalTaskTest.php, line 7
Namespace
Drupal\menu_test\Plugin\DerivativeView source
class LocalTaskTest extends DeriverBase {
/**
* {@inheritdoc}
*/
public function getDerivativeDefinitions($base_plugin_definition) {
$weight = $base_plugin_definition['weight'];
foreach ([
'derive1' => 'Derive 1',
'derive2' => 'Derive 2',
] as $key => $title) {
$this->derivatives[$key] = $base_plugin_definition;
$this->derivatives[$key]['title'] = $title;
$this->derivatives[$key]['route_parameters'] = [
'placeholder' => $key,
];
// Ensure weights for testing.
$this->derivatives[$key]['weight'] = $weight++;
}
return $this->derivatives;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title | Overrides |
---|---|---|---|---|---|
DeriverBase::$derivatives | protected | property | List of derivative definitions. | 1 | |
DeriverBase::getDerivativeDefinition | public | function | Gets the definition of a derivative plugin. | Overrides DeriverInterface::getDerivativeDefinition | |
LocalTaskTest::getDerivativeDefinitions | public | function | Gets the definition of all derivatives of a base plugin. | Overrides DeriverBase::getDerivativeDefinitions |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.