class GoogleAnalyticsEventTrackerHtmlRouteProvider in Google Analytics Event Tracking 8
Same name and namespace in other branches
- 8.2 src/GoogleAnalyticsEventTrackerHtmlRouteProvider.php \Drupal\google_analytics_et\GoogleAnalyticsEventTrackerHtmlRouteProvider
Provides routes for Google Analytics event tracker entities.
Hierarchy
- class \Drupal\Core\Entity\Routing\DefaultHtmlRouteProvider implements EntityHandlerInterface, EntityRouteProviderInterface
- class \Drupal\Core\Entity\Routing\AdminHtmlRouteProvider
- class \Drupal\google_analytics_et\GoogleAnalyticsEventTrackerHtmlRouteProvider
- class \Drupal\Core\Entity\Routing\AdminHtmlRouteProvider
Expanded class hierarchy of GoogleAnalyticsEventTrackerHtmlRouteProvider
See also
Drupal\Core\Entity\Routing\AdminHtmlRouteProvider
Drupal\Core\Entity\Routing\DefaultHtmlRouteProvider
File
- src/
GoogleAnalyticsEventTrackerHtmlRouteProvider.php, line 15
Namespace
Drupal\google_analytics_etView source
class GoogleAnalyticsEventTrackerHtmlRouteProvider extends AdminHtmlRouteProvider {
/**
* {@inheritdoc}
*/
public function getRoutes(EntityTypeInterface $entity_type) {
$collection = parent::getRoutes($entity_type);
// Provide your custom entity routes here.
return $collection;
}
}