public function ViewExecutable::executeHookBlockList in Views (for Drupal 7) 8.3
Called to get hook_block information from the view and the named display handler.
File
- lib/
Drupal/ views/ ViewExecutable.php, line 1505 - Definition of Drupal\views\ViewExecutable.
Class
- ViewExecutable
- An object to contain all of the data to generate a view, plus the member functions to build the view query, execute the query and render the output.
Namespace
Drupal\viewsCode
public function executeHookBlockList($display_id = NULL) {
// Prepare the view with the information we have.
// This was probably already called, but it's good to be safe.
if (!$this
->setDisplay($display_id)) {
return FALSE;
}
// Execute the view
if (isset($this->display_handler)) {
return $this->display_handler
->executeHookBlockList();
}
}