You are here

public function ViewStorage::setExecutable in Views (for Drupal 7) 8.3

Stores the executable version of this view.

Parameters

Drupal\views\ViewExecutable $executable: The executable version of this view.

1 call to ViewStorage::setExecutable()
ViewStorage::getExecutable in lib/Drupal/views/ViewStorage.php
Retrieves the executable version of this view.

File

lib/Drupal/views/ViewStorage.php, line 124
Definition of Drupal\views\ViewStorage.

Class

ViewStorage
Defines a ViewStorage configuration entity class.

Namespace

Drupal\views

Code

public function setExecutable(ViewExecutable $executable) {
  $this->executable = $executable;
}