friendica/src/Module/Apps.php

72 lines
2.3 KiB
PHP
Raw Normal View History

2019-02-24 17:34:39 +01:00
<?php
2020-02-09 15:45:36 +01:00
/**
* @copyright Copyright (C) 2010-2024, the Friendica project
2020-02-09 15:45:36 +01:00
*
* @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/>.
*
*/
2019-02-24 17:34:39 +01:00
namespace Friendica\Module;
use Friendica\App;
2019-02-24 17:34:39 +01:00
use Friendica\BaseModule;
use Friendica\Content\Nav;
use Friendica\Core\Config\Capability\IManageConfigValues;
use Friendica\Core\L10n;
2019-02-24 17:34:39 +01:00
use Friendica\Core\Renderer;
use Friendica\Core\Session\Capability\IHandleUserSessions;
use Friendica\Navigation\SystemMessages;
use Friendica\Util\Profiler;
use Psr\Log\LoggerInterface;
2019-02-24 17:34:39 +01:00
/**
* Shows the App menu
*/
class Apps extends BaseModule
{
/** @var Nav */
protected $nav;
/** @var SystemMessages */
protected $systemMessages;
public function __construct(SystemMessages $systemMessages, Nav $nav, IHandleUserSessions $session, L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, IManageConfigValues $config, array $server, array $parameters = [])
2019-02-24 17:34:39 +01:00
{
parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
$this->nav = $nav;
$this->systemMessages = $systemMessages;
$privateaddons = $config->get('config', 'private_addons');
if ($privateaddons === "1" && !$session->getLocalUserId()) {
$baseUrl->redirect();
2019-02-24 17:34:39 +01:00
}
}
protected function content(array $request = []): string
2019-02-24 17:34:39 +01:00
{
$apps = $this->nav->getAppMenu();
2019-02-24 17:34:39 +01:00
if (count($apps) == 0) {
$this->systemMessages->addNotice($this->t('No installed applications.'));
2019-02-24 17:34:39 +01:00
}
$tpl = Renderer::getMarkupTemplate('apps.tpl');
return Renderer::replaceMacros($tpl, [
'$title' => $this->t('Applications'),
2019-02-24 17:34:39 +01:00
'$apps' => $apps,
]);
}
}