You are here

public function ViewExecutable::getPath in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views/src/ViewExecutable.php \Drupal\views\ViewExecutable::getPath()

Gets the base path used for this view.

Return value

string|false The base path used for the view or FALSE if setting the display fails.

1 call to ViewExecutable::getPath()
ViewExecutable::getUrl in core/modules/views/src/ViewExecutable.php
Gets the URL for the current view.

File

core/modules/views/src/ViewExecutable.php, line 2024

Class

ViewExecutable
Represents a view as a whole.

Namespace

Drupal\views

Code

public function getPath() {
  if (!empty($this->override_path)) {
    return $this->override_path;
  }
  if (empty($this->display_handler)) {
    if (!$this
      ->setDisplay('default')) {
      return FALSE;
    }
  }
  return $this->display_handler
    ->getPath();
}