RouteSubscriber.php in Salesforce Suite 8.3
File
modules/salesforce_mapping/src/Routing/RouteSubscriber.php
View source
<?php
namespace Drupal\salesforce_mapping\Routing;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Routing\RouteSubscriberBase;
use Drupal\Core\Routing\RoutingEvents;
use Symfony\Component\Routing\Route;
use Symfony\Component\Routing\RouteCollection;
class RouteSubscriber extends RouteSubscriberBase {
protected $entityTypeManager;
protected $mappable;
public function __construct(EntityTypeManagerInterface $entity_manager) {
$this->entityTypeManager = $entity_manager;
}
protected function alterRoutes(RouteCollection $collection) {
foreach ($this->entityTypeManager
->getDefinitions() as $entity_type_id => $entity_type) {
if (!($path = $entity_type
->getLinkTemplate('salesforce'))) {
continue;
}
$route = new Route($path);
$route
->addDefaults([
'_controller' => "\\Drupal\\salesforce_mapping\\Controller\\MappedObjectController::listing",
'_title' => "Salesforce mapped objects",
])
->addRequirements([
'_custom_access' => '\\Drupal\\salesforce_mapping\\Controller\\MappedObjectController::access',
])
->setOption('_admin_route', TRUE)
->setOption('_salesforce_entity_type_id', $entity_type_id)
->setOption('parameters', [
$entity_type_id => [
'type' => 'entity:' . $entity_type_id,
],
]);
$collection
->add("entity.{$entity_type_id}.salesforce", $route);
}
}
public static function getSubscribedEvents() {
$events = parent::getSubscribedEvents();
$events[RoutingEvents::ALTER] = [
'onAlterRoutes',
100,
];
return $events;
}
}