You are here

class RouteSubscriber in Icon API 8

Listens to dynamic route events.

Hierarchy

Expanded class hierarchy of RouteSubscriber

File

src/Routing/RouteSubscriber.php, line 11

Namespace

Drupal\icon\Routing
View source
class RouteSubscriber extends RouteSubscriberBase {

  /**
   * {@inheritdoc}
   */
  public function alterRoutes(RouteCollection $collection) {

    /**
     * @FIXME
     * Parts of your hook_menu_alter() logic should be moved in here. You should NOT
     * use this method to define new routes -- read the documentation at
     * https://www.drupal.org/node/2122201 to learn how to define dynamic routes --
     * but to alter existing ones.
     */
  }

}

Members

Namesort descending Modifiers Type Description Overrides
RouteSubscriber::alterRoutes public function Alters existing routes for a specific collection. Overrides RouteSubscriberBase::alterRoutes
RouteSubscriberBase::getSubscribedEvents public static function Returns an array of event names this subscriber wants to listen to. 5
RouteSubscriberBase::onAlterRoutes public function Delegates the route altering to self::alterRoutes(). 1