You are here

function view::get_path in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 6.2 includes/view.inc \view::get_path()
  2. 7.3 includes/view.inc \view::get_path()

Get the base path used for this view.

1 call to view::get_path()
view::get_url in includes/view.inc
Get the URL for the current view.

File

includes/view.inc, line 1444
view.inc Provides the view object type and associated methods.

Class

view
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.

Code

function get_path() {
  if (!empty($this->override_path)) {
    return $this->override_path;
  }
  if (empty($this->display_handler)) {
    if (!$this
      ->set_display('default')) {
      return FALSE;
    }
  }
  return $this->display_handler
    ->get_path();
}