]> git.mxchange.org Git - friendica-addons.git/commitdiff
Split and delete `ModuleController`
authorPhilipp <admin@philipp.info>
Fri, 19 Nov 2021 21:47:48 +0000 (22:47 +0100)
committerPhilipp <admin@philipp.info>
Sat, 27 Nov 2021 11:42:12 +0000 (12:42 +0100)
- $moduleName is part of the argument string => App\Arguments
- $isBackend boolean already part of App\Mode::isBackend()
- $module is now the direct return of App\Router::getModule()
- ModuleController::run() moved to BaseModule::run()

rendertime/rendertime.php

index 135bcc76f2283e28715ae46c5abab5294664402a..79476689a8ea5c8a15ee8032801e9f96c34ddea8 100644 (file)
@@ -29,7 +29,7 @@ function rendertime_page_end(Friendica\App $a, &$o)
        $duration = microtime(true) - $profiler->get('start');
 
        $ignored_modules = ["fbrowser"];
-       $ignored = in_array(DI::module()->getName(), $ignored_modules);
+       $ignored = in_array(DI::args()->getModuleName(), $ignored_modules);
 
        if ($a->isSiteAdmin() && (($_GET['mode'] ?? '') != 'minimal') && !DI::mode()->isMobile() && !DI::mode()->isMobile() && !$ignored) {