Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 6 |
CacheRouterRebuildSubscriber | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
6 | |
0.00% |
0 / 6 |
onRouterFinished | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
|||
getSubscribedEvents | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 4 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\Core\EventSubscriber\CacheRouterRebuildSubscriber. | |
*/ | |
namespace Drupal\Core\EventSubscriber; | |
use Drupal\Core\Cache\Cache; | |
use Drupal\Core\Routing\RoutingEvents; | |
use Symfony\Component\EventDispatcher\EventSubscriberInterface; | |
/** | |
* Clear cache tags when the router is rebuilt. | |
*/ | |
class CacheRouterRebuildSubscriber implements EventSubscriberInterface { | |
/** | |
* {@inheritdoc} | |
*/ | |
public function onRouterFinished() { | |
// Requested URLs that formerly gave a 403/404 may now be valid. | |
// Also invalidate all cached routing. | |
Cache::invalidateTags(['4xx-response', 'route_match']); | |
} | |
/** | |
* {@inheritdoc} | |
*/ | |
public static function getSubscribedEvents() { | |
$events = []; | |
// Act only when the router rebuild is finished. | |
$events[RoutingEvents::FINISHED][] = ['onRouterFinished', 200]; | |
return $events; | |
} | |
} |