public function CurrentPathHelper::getUrls in Menu Trail By Path 8
@inheritdoc
Overrides PathHelperInterface::getUrls
File
- src/
Path/ CurrentPathHelper.php, line 38
Class
Namespace
Drupal\menu_trail_by_path\PathCode
public function getUrls() {
$trail_urls = $this
->getCurrentPathUrls();
if ($current_request_url = $this
->getCurrentRequestUrl()) {
$trail_urls[] = $current_request_url;
}
return $trail_urls;
}