You are here

public function ModalPage::getCurrentPath in Modal 8.3

Same name and namespace in other branches
  1. 8.2 src/ModalPage.php \Drupal\modal_page\ModalPage::getCurrentPath()

Get the current path.

Return value

string The current path.

1 call to ModalPage::getCurrentPath()
ModalPage::getModalToShow in src/ModalPage.php
Get modal to show.

File

src/ModalPage.php, line 238

Class

ModalPage
Modal Page Class.

Namespace

Drupal\modal_page

Code

public function getCurrentPath() : string {

  // $currentPath = ltrim($this->request->getRequestUri(), '/');.
  $currentPath = $this->request
    ->getRequestUri();
  if ($this->pathMatcher
    ->isFrontPage()) {
    $currentPath = '<front>';
  }
  return $currentPath;
}