public function ViewExecutable::executeHookMenu

Called to get hook_menu() information from the view and the named display handler.

Parameters

$display_id: A display id.

$callbacks: A menu callback array passed from views_menu_alter().

File

drupal/core/modules/views/lib/Drupal/views/ViewExecutable.php, line 1446
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\views

Code

public function executeHookMenu($display_id = NULL, &$callbacks = array()) {

  // 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
      ->executeHookMenu($callbacks);
  }
}