public function ViewUI::getExecutable in Drupal 8
Same name and namespace in other branches
- 9 core/modules/views_ui/src/ViewUI.php \Drupal\views_ui\ViewUI::getExecutable()
Gets an executable instance for this view.
Return value
\Drupal\views\ViewExecutable A view executable instance.
Overrides ViewEntityInterface::getExecutable
2 calls to ViewUI::getExecutable()
- ViewUI::cacheSet in core/
modules/ views_ui/ src/ ViewUI.php - Sets a cached view object in the shared tempstore.
- ViewUI::renderPreview in core/
modules/ views_ui/ src/ ViewUI.php
File
- core/
modules/ views_ui/ src/ ViewUI.php, line 1143
Class
- ViewUI
- Stores UI related temporary settings.
Namespace
Drupal\views_uiCode
public function getExecutable() {
return $this->storage
->getExecutable();
}