]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Admin/Queue.php
Use router parameters in Admin modules
[friendica.git] / src / Module / Admin / Queue.php
index 59912fc6c9ca83a3b875d88f3cc1aa37540e228c..7f5329dbfe87aad6bf960f22325102ce2a9c2646 100644 (file)
@@ -1,4 +1,23 @@
 <?php
+/**
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 namespace Friendica\Module\Admin;
 
@@ -23,13 +42,10 @@ class Queue extends BaseAdmin
        {
                parent::content($parameters);
 
-               $a = DI::app();
-
-               // @TODO: Replace with parameter from router
-               $deferred = $a->argc > 2 && $a->argv[2] == 'deferred';
+               $status = $parameters['status'] ?? '';
 
                // get jobs from the workerqueue table
-               if ($deferred) {
+               if ($status == 'deferred') {
                        $condition = ["NOT `done` AND `retrial` > ?", 0];
                        $sub_title = DI::l10n()->t('Inspect Deferred Worker Queue');
                        $info = DI::l10n()->t("This page lists the deferred worker jobs. This are jobs that couldn't be executed at the first time.");