public function Link::isResettable in Colossal Menu 8
Same name and namespace in other branches
- 2.x src/Entity/Link.php \Drupal\colossal_menu\Entity\Link::isResettable()
Returns whether this link can be reset.
In general, only links that store overrides using the menu_link.static.overrides service should return TRUE for this method.
Return value
bool TRUE if it can be reset, FALSE otherwise.
Overrides MenuLinkInterface::isResettable
File
- src/
Entity/ Link.php, line 376
Class
- Link
- Defines the Link entity.
Namespace
Drupal\colossal_menu\EntityCode
public function isResettable() {
return FALSE;
}