You are here

final class Events in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony-cmf/routing/Event/Events.php \Symfony\Cmf\Component\Routing\Event\Events

Hierarchy

  • class \Symfony\Cmf\Component\Routing\Event\Events

Expanded class hierarchy of Events

2 files declare their use of Events
DynamicRouter.php in vendor/symfony-cmf/routing/DynamicRouter.php
DynamicRouterTest.php in vendor/symfony-cmf/routing/Tests/Routing/DynamicRouterTest.php

File

vendor/symfony-cmf/routing/Event/Events.php, line 14

Namespace

Symfony\Cmf\Component\Routing\Event
View source
final class Events {

  /**
   * Fired before a path is matched in \Symfony\Cmf\Component\Routing\DynamicRouter#match
   *
   * The event object is RouteMatchEvent.
   */
  const PRE_DYNAMIC_MATCH = 'cmf_routing.pre_dynamic_match';

  /**
   * Fired before a Request is matched in \Symfony\Cmf\Component\Routing\DynamicRouter#match
   *
   * The event object is RouteMatchEvent.
   */
  const PRE_DYNAMIC_MATCH_REQUEST = 'cmf_routing.pre_dynamic_match_request';

}

Members

Namesort descending Modifiers Type Description Overrides
Events::PRE_DYNAMIC_MATCH constant Fired before a path is matched in \Symfony\Cmf\Component\Routing\DynamicRouter#match
Events::PRE_DYNAMIC_MATCH_REQUEST constant Fired before a Request is matched in \Symfony\Cmf\Component\Routing\DynamicRouter#match