heartbeatService = $heartbeatService; $this->heartbeatStreamService = $heartbeatStreamService; $this->entityQuery = $entityQuery; $this->entityTypeManager = $entityTypeManager; } /** * {@inheritdoc} */ public static function create(ContainerInterface $container) { return new static( $container->get('heartbeat'), $container->get('heartbeatstream'), $container->get('entity.query'), $container->get('entity_type.manager') ); } /** * Getroutes. * * @return string * Return Hello string. */ public function getRoutes() { \Drupal::logger('HeartbeatRouteController')->debug('We getting called, yo'); $routeCollection = new RouteCollection(); foreach ($this->heartbeatStreamService->getAllStreams() as $heartbeatStream) { $route = new Route( $heartbeatStream->getPath()->getValue()[0]['value'], array( '_controller' => '\Drupal\heartbeat\Controller\HeartbeatStreamController::createRoute', '_title' => $heartbeatStream->getName(), 'heartbeatStreamId' => $heartbeatStream->id(), ), array( '_permission' => 'access content', ) ); // Add the route under the name 'example.content'. $routeCollection->add('heartbeat.' . $heartbeatStream->getName(), $route); } \Drupal::logger('HeartbeatRouteController')->debug('Data is %data', array('%data' => $routeCollection)); return $routeCollection; } }