Same name and namespace in other branches
  1. 6.x-3.x includes/view.inc \view::execute_hook_menu()

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

Parameters

string $display_id: A display id.

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

File

includes/view.inc, line 1501
views_objects Objects that represent a View or part of a view

Class

view

Code

public function execute_hook_menu($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
    ->set_display($display_id)) {
    return FALSE;
  }

  // Execute the view.
  if (isset($this->display_handler)) {
    return $this->display_handler
      ->execute_hook_menu($callbacks);
  }
}