You are here

public function views_navigation_handler_field_node_path::render in Views navigation 7

Implements render().

Overrides views_handler_field_node_path::render

File

views/views_navigation_handler_field_node_path.inc, line 16
Function to return the Node Path handler for Views Navigation.

Class

views_navigation_handler_field_node_path
Class views_navigation_handler_field_node_path.

Code

public function render($values) {
  module_load_include('inc', 'views_navigation');
  return _views_navigation_build_url($this
    ->get_value($values, 'nid'), $this->view, [
    'absolute' => $this->options['absolute'],
  ]);
}