This is a non-production site
Same filename and directory in other branches
- 4.x src/Plugin/Menu/DestinationMenuLink.php
Namespace
Drupal\devel\Plugin\Menu
File
-
src/Plugin/Menu/DestinationMenuLink.php
View source
<?php
namespace Drupal\devel\Plugin\Menu;
use Drupal\Core\Menu\MenuLinkDefault;
use Drupal\Core\Url;
class DestinationMenuLink extends MenuLinkDefault {
public function getOptions() {
$options = parent::getOptions();
$options['query']['destination'] = Url::fromRoute('<current>')->toString();
return $options;
}
public function getCacheMaxAge() : int {
return 0;
}
}
Classes