mirror of
https://github.com/nextcloud/documentation.git
synced 2026-01-04 10:46:21 +07:00
fix links
This commit is contained in:
@@ -11,9 +11,11 @@ App Development
|
||||
:hidden:
|
||||
|
||||
../general/index
|
||||
tutorial
|
||||
main
|
||||
info
|
||||
classloader
|
||||
request
|
||||
routes
|
||||
middleware
|
||||
container
|
||||
|
||||
@@ -10,7 +10,7 @@ A typical HTTP request consists of the following:
|
||||
* **A Method**: e.g. GET
|
||||
* **Request headers**: e.g. Accept: application/json
|
||||
|
||||
The following sections will present an overview over how that request is being processed to provide an in depth view over how ownCloud works. If you are not interested in the internals or don't want to execute anything before and after your controller, feel free to skip this section and continue directly with defining :doc:`your app's routes <routing>`.
|
||||
The following sections will present an overview over how that request is being processed to provide an in depth view over how ownCloud works. If you are not interested in the internals or don't want to execute anything before and after your controller, feel free to skip this section and continue directly with defining :doc:`your app's routes <routes>`.
|
||||
|
||||
Front controller
|
||||
----------------
|
||||
@@ -31,7 +31,7 @@ Afterwards the following steps are performed:
|
||||
|
||||
Router
|
||||
------
|
||||
The router parses the :doc:`apps routing files <routing>` (:file:`appinfo/routes.php), inspects the request's **method** and **url**, queries the controller from the :doc:`container` and then passes control to the dispatcher. The dispatcher is responsible for running the hooks (called Middleware) before and after the controller, executing the controller method and rendering the output.
|
||||
The router parses the :doc:`apps routing files <routes>` (:file:`appinfo/routes.php), inspects the request's **method** and **url**, queries the controller from the :doc:`container` and then passes control to the dispatcher. The dispatcher is responsible for running the hooks (called Middleware) before and after the controller, executing the controller method and rendering the output.
|
||||
|
||||
Middleware
|
||||
----------
|
||||
|
||||
Reference in New Issue
Block a user