Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 3 |
CRAP | |
0.00% |
0 / 7 |
ParamConverterSubscriber | |
0.00% |
0 / 1 |
|
0.00% |
0 / 3 |
12 | |
0.00% |
0 / 7 |
__construct | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
|||
onRoutingRouteAlterSetParameterConverters | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
|||
getSubscribedEvents | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\Core\EventSubscriber\ParamConverterSubscriber. | |
*/ | |
namespace Drupal\Core\EventSubscriber; | |
use Drupal\Core\ParamConverter\ParamConverterManagerInterface; | |
use Symfony\Component\EventDispatcher\EventSubscriberInterface; | |
use Drupal\Core\Routing\RoutingEvents; | |
use Drupal\Core\Routing\RouteBuildEvent; | |
/** | |
* Event subscriber for registering parameter converters with routes. | |
*/ | |
class ParamConverterSubscriber implements EventSubscriberInterface { | |
/** | |
* The parameter converter manager. | |
* | |
* @var \Drupal\Core\ParamConverter\ParamConverterManagerInterface | |
*/ | |
protected $paramConverterManager; | |
/** | |
* Constructs a new ParamConverterSubscriber. | |
* | |
* @param \Drupal\Core\ParamConverter\ParamConverterManagerInterface $param_converter_manager | |
* The parameter converter manager that will be responsible for upcasting | |
* request attributes. | |
*/ | |
public function __construct(ParamConverterManagerInterface $param_converter_manager) { | |
$this->paramConverterManager = $param_converter_manager; | |
} | |
/** | |
* Applies parameter converters to route parameters. | |
* | |
* @param \Drupal\Core\Routing\RouteBuildEvent $event | |
* The event to process. | |
*/ | |
public function onRoutingRouteAlterSetParameterConverters(RouteBuildEvent $event) { | |
$this->paramConverterManager->setRouteParameterConverters($event->getRouteCollection()); | |
} | |
/** | |
* {@inheritdoc} | |
*/ | |
static function getSubscribedEvents() { | |
// Run after \Drupal\system\EventSubscriber\AdminRouteSubscriber. | |
$events[RoutingEvents::ALTER][] = array('onRoutingRouteAlterSetParameterConverters', -220); | |
return $events; | |
} | |
} |