Mercurial > hg > isophonics-drupal-site
view core/lib/Drupal/Core/Menu/InaccessibleMenuLink.php @ 13:5fb285c0d0e3
Update Drupal core to 8.4.7 via Composer. Security update; I *think* we've
been lucky to get away with this so far, as we don't support self-registration
which seems to be used by the so-called "drupalgeddon 2" attack that 8.4.5
was vulnerable to.
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:33:26 +0100 |
parents | 4c8ae668cc8c |
children | 129ea1e6d783 |
line wrap: on
line source
<?php namespace Drupal\Core\Menu; use Drupal\Component\Plugin\Exception\PluginException; /** * A menu link plugin for wrapping another menu link, in sensitive situations. * * @see \Drupal\Core\Menu\DefaultMenuLinkTreeManipulators::checkAccess() */ class InaccessibleMenuLink extends MenuLinkBase { /** * The wrapped menu link. * * @var \Drupal\Core\Menu\MenuLinkInterface */ protected $wrappedLink; /** * Constructs a new InaccessibleMenuLink. * * @param \Drupal\Core\Menu\MenuLinkInterface $wrapped_link * The menu link to wrap. */ public function __construct(MenuLinkInterface $wrapped_link) { $this->wrappedLink = $wrapped_link; $plugin_definition = [ 'route_name' => '<front>', 'route_parameters' => [], 'url' => NULL, ] + $this->wrappedLink->getPluginDefinition(); parent::__construct([], $this->wrappedLink->getPluginId(), $plugin_definition); } /** * {@inheritdoc} */ public function getTitle() { return $this->t('Inaccessible'); } /** * {@inheritdoc} */ public function getDescription() { return ''; } /** * {@inheritdoc} */ public function getCacheContexts() { return $this->wrappedLink->getCacheContexts(); } /** * {@inheritdoc} */ public function getCacheTags() { return $this->wrappedLink->getCacheTags(); } /** * {@inheritdoc} */ public function getCacheMaxAge() { return $this->wrappedLink->getCacheMaxAge(); } /** * {@inheritdoc} */ public function updateLink(array $new_definition_values, $persist) { throw new PluginException('Inaccessible menu link plugins do not support updating'); } }