public function ModalPageService::getCurrentPath in Modal 4.1.x
Same name and namespace in other branches
- 5.0.x src/Service/ModalPageService.php \Drupal\modal_page\Service\ModalPageService::getCurrentPath()
- 4.0.x src/Service/ModalPageService.php \Drupal\modal_page\Service\ModalPageService::getCurrentPath()
Get the current path.
Return value
string The current path.
1 call to ModalPageService::getCurrentPath()
- ModalPageService::loadModalsToShow in src/
Service/ ModalPageService.php - Get modal to show.
File
- src/
Service/ ModalPageService.php, line 356
Class
- ModalPageService
- Modal Page Service Class.
Namespace
Drupal\modal_page\ServiceCode
public function getCurrentPath() : string {
// $currentPath = ltrim($this->request->getRequestUri(), '/');.
$currentPath = $this->request
->getRequestUri();
if ($this->pathMatcher
->isFrontPage()) {
$currentPath = '<front>';
}
return $currentPath;
}