@@ -46,6 +46,10 @@ variables:
46
46
:class: `Symfony\\ Component\\ HttpFoundation\\ SessionStorage\\ SessionStorageInterface `
47
47
interface abstract session management ``session_*() `` functions.
48
48
49
+ .. note ::
50
+
51
+ Read more about the :doc: `HttpFoundation Component </components/http_foudation/introduction >`.
52
+
49
53
``HttpKernel `` Component
50
54
~~~~~~~~~~~~~~~~~~~~~~~~
51
55
@@ -60,7 +64,8 @@ Dependency Injection component and a powerful plugin system (bundles).
60
64
61
65
.. seealso ::
62
66
63
- Read more about :doc: `Dependency Injection </book/service_container >` and
67
+ Read more about the :doc: `HttpKernel Component </components/http_kernel/introduction >`,
68
+ :doc: `Dependency Injection </book/service_container >` and
64
69
:doc: `Bundles </cookbook/bundles/best_practices >`.
65
70
66
71
``FrameworkBundle `` Bundle
@@ -258,6 +263,10 @@ uses a :class:`Symfony\\Component\\Routing\\RouterInterface` object to match
258
263
the ``Request `` and determine the Controller name (stored in the
259
264
``_controller `` ``Request `` attribute).
260
265
266
+ .. seealso ::
267
+
268
+ Read more on the :ref: `kernel.request event <component-http-kernel-kernel-request >`.
269
+
261
270
.. index ::
262
271
single: Event; kernel.controller
263
272
@@ -280,6 +289,10 @@ to modify the controller that should be executed::
280
289
$event->setController($controller);
281
290
}
282
291
292
+ .. seealso ::
293
+
294
+ Read more on the :ref: `kernel.controller event <component-http-kernel-kernel-controller >`.
295
+
283
296
.. index ::
284
297
single: Event; kernel.view
285
298
@@ -309,6 +322,10 @@ The value returned by the Controller is accessible via the
309
322
$event->setResponse($response);
310
323
}
311
324
325
+ .. seealso ::
326
+
327
+ Read more on the :ref: `kernel.view event <component-http-kernel-kernel-view >`.
328
+
312
329
.. index ::
313
330
single: Event; kernel.response
314
331
@@ -342,6 +359,10 @@ The ``FrameworkBundle`` registers several listeners:
342
359
``Surrogate-Control `` HTTP header when the Response needs to be parsed for
343
360
ESI tags.
344
361
362
+ .. seealso ::
363
+
364
+ Read more on the :ref: `kernel.response event <component-http-kernel-kernel-response >`.
365
+
345
366
.. index ::
346
367
single: Event; kernel.exception
347
368
@@ -386,6 +407,10 @@ The event dispatcher is a standalone component that is responsible for much
386
407
of the underlying logic and flow behind a Symfony request. For more information,
387
408
see the :doc: `Event Dispatcher Component Documentation</components/event_dispatcher/introduction> `.
388
409
410
+ .. seealso ::
411
+
412
+ Read more on the :ref: `kernel.exception event <component-http-kernel-kernel-exception >`.
413
+
389
414
.. index ::
390
415
single: Profiler
391
416
0 commit comments