From da68fb0b4bbbe833623902eb77538618c741df81 Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Mon, 5 Jul 2021 09:46:01 +0200 Subject: [PATCH] Fix links from the request lifecycle to the app init docs Signed-off-by: Christoph Wurst --- developer_manual/basics/request_lifecycle.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/developer_manual/basics/request_lifecycle.rst b/developer_manual/basics/request_lifecycle.rst index d38047ab9..ff9c41036 100644 --- a/developer_manual/basics/request_lifecycle.rst +++ b/developer_manual/basics/request_lifecycle.rst @@ -28,11 +28,11 @@ In the beginning, all requests are sent to Nextcloud's :file:`index.php` which i * Filesystem * Logging -The type of the app is determined by inspecting the app's :doc:`configuration file <../info>` (:file:`appinfo/info.xml`). Loading apps means that the :doc:`main file <../init>` (:file:`appinfo/app.php`) of each installed app is being loaded and executed. That means that if you want to execute code before a specific app is being run, you can place code in your app's :doc:`../init` file. +The type of the app is determined by inspecting the app's :doc:`configuration file <../info>` (:file:`appinfo/info.xml`). Loading apps means that the :doc:`main file <../app_development/init>` (:file:`appinfo/app.php`) of each installed app is being loaded and executed. That means that if you want to execute code before a specific app is being run, you can place code in your app's :doc:`../app_development/init` file. Afterwards the following steps are performed: * Try to authenticate the user -* Load and execute all the remaining apps' :doc:`../init` files +* Load and execute all the remaining apps' :doc:`../app_development/init` files * Load and run all the routes in the apps' :file:`appinfo/routes.php` * Execute the router