function DynamicMenuLinkMock::getRouteName
Same name in other branches
- 8.9.x core/tests/Drupal/Tests/Core/Menu/DynamicMenuLinkMock.php \Drupal\Tests\Core\Menu\DynamicMenuLinkMock::getRouteName()
- 10 core/tests/Drupal/Tests/Core/Menu/DynamicMenuLinkMock.php \Drupal\Tests\Core\Menu\DynamicMenuLinkMock::getRouteName()
- 11.x core/tests/Drupal/Tests/Core/Menu/DynamicMenuLinkMock.php \Drupal\Tests\Core\Menu\DynamicMenuLinkMock::getRouteName()
Overrides MenuLinkBase::getRouteName
File
-
core/
tests/ Drupal/ Tests/ Core/ Menu/ DynamicMenuLinkMock.php, line 54
Class
- DynamicMenuLinkMock
- Defines a mock implementation of a dynamic menu link used in tests only.
Namespace
Drupal\Tests\Core\MenuCode
public function getRouteName() {
if ($this->currentUser
->isAuthenticated()) {
return 'user.logout';
}
else {
return 'user.login';
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.