public ViewUI::hasLinkTemplate($key)
Indicates if a link template exists for a given key.
Parameters
string $key: The link type.
Return value
bool TRUE if the link template exists, FALSE otherwise.
Overrides EntityInterface::hasLinkTemplate
File
- core/modules/views_ui/src/ViewUI.php, line 1177
Class
- ViewUI
- Stores UI related temporary settings.
Namespace
Drupal\views_ui
Code
1 2 3 | public function hasLinkTemplate( $key ) { return $this ->storage->hasLinkTemplate( $key ); } |
Please login to continue.