protected function NodeBehaviorSettingsFormTest::getEditBundleUrl in Rabbit Hole 8
Same name and namespace in other branches
- 2.x modules/rh_node/tests/src/Functional/NodeBehaviorSettingsFormTest.php \Drupal\Tests\rh_node\Functional\NodeBehaviorSettingsFormTest::getEditBundleUrl()
Returns URL of the "Edit" entity bundle page.
Parameters
string $bundle: Entity bundle id.
Return value
\Drupal\Core\Url URL object.
Overrides RabbitHoleBehaviorSettingsFormTestBase::getEditBundleUrl
File
- modules/
rh_node/ tests/ src/ Functional/ NodeBehaviorSettingsFormTest.php, line 119
Class
- NodeBehaviorSettingsFormTest
- Test the functionality of the rabbit hole form additions to the node form.
Namespace
Drupal\Tests\rh_node\FunctionalCode
protected function getEditBundleUrl($bundle) {
return Url::fromRoute('entity.node_type.edit_form', [
'node_type' => $bundle,
]);
}