function view::get_path

Same name in other branches
  1. 7.x-3.x 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

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();
}