ViewUI::hasLinkTemplate

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);
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.