Same filename and directory in other branches
- 5.x src/Plugin/Menu/RouteDetailMenuLink.php
Namespace
Drupal\devel\Plugin\Menu
File
-
src/Plugin/Menu/RouteDetailMenuLink.php
View source
<?php
namespace Drupal\devel\Plugin\Menu;
use Drupal\Core\Menu\MenuLinkDefault;
use Drupal\Core\Url;
class RouteDetailMenuLink extends MenuLinkDefault {
public function getOptions() {
$options = parent::getOptions();
$options['query']['path'] = '/' . Url::fromRoute('<current>')->getInternalPath();
return $options;
}
public function getCacheMaxAge() {
return 0;
}
}
Classes