1 views.module views_page($name, $display_id)

Page callback: Displays a page view, given a name and display id.

Parameters

$name: The name of a view.

$display_id: The display id of a view.

Return value

Either the HTML of a fully-executed view, or MENU_NOT_FOUND.:

File

core/modules/views/views.module, line 541
Primarily Backdrop hooks and global API functions to manipulate views.

Code

function views_page($name, $display_id) {
  $args = func_get_args();
  // Remove $name and $display_id from the arguments.
  array_shift($args);
  array_shift($args);

  // Load the view and render it.
  if ($view = views_get_view($name)) {
    return $view->execute_display($display_id, $args);
  }

  // Fallback; if we get here no view was found or handler was not valid.
  return MENU_NOT_FOUND;
}