80 lines
2.4 KiB
PHP
80 lines
2.4 KiB
PHP
<?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;
|
|
|
|
use Friendica\BaseModule;
|
|
use Friendica\Core\Hook;
|
|
use Friendica\Core\Renderer;
|
|
use Friendica\DI;
|
|
use Friendica\Module\Security\Login;
|
|
|
|
/**
|
|
* Home module - Landing page of the current node
|
|
*/
|
|
class Home extends BaseModule
|
|
{
|
|
public static function content(array $parameters = [])
|
|
{
|
|
$app = DI::app();
|
|
$config = DI::config();
|
|
|
|
// currently no returned data is used
|
|
$ret = [];
|
|
|
|
Hook::callAll('home_init', $ret);
|
|
|
|
if (local_user() && ($app->user['nickname'])) {
|
|
DI::baseUrl()->redirect('network');
|
|
}
|
|
|
|
if (strlen($config->get('system', 'singleuser'))) {
|
|
DI::baseUrl()->redirect('/profile/' . $config->get('system', 'singleuser'));
|
|
}
|
|
|
|
$customHome = '';
|
|
$defaultHeader = ($config->get('config', 'sitename') ? DI::l10n()->t('Welcome to %s', $config->get('config', 'sitename')) : '');
|
|
|
|
$homeFilePath = $app->getBasePath() . '/home.html';
|
|
$cssFilePath = $app->getBasePath() . '/home.css';
|
|
|
|
if (file_exists($homeFilePath)) {
|
|
$customHome = $homeFilePath;
|
|
|
|
if (file_exists($cssFilePath)) {
|
|
DI::page()['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . DI::baseUrl()->get() . '/home.css' . '" media="all" />';
|
|
}
|
|
}
|
|
|
|
$login = Login::form(DI::args()->getQueryString(), $config->get('config', 'register_policy') === Register::CLOSED ? 0 : 1);
|
|
|
|
$content = '';
|
|
Hook::callAll('home_content', $content);
|
|
|
|
$tpl = Renderer::getMarkupTemplate('home.tpl');
|
|
return Renderer::replaceMacros($tpl, [
|
|
'$defaultheader' => $defaultHeader,
|
|
'$customhome' => $customHome,
|
|
'$login' => $login,
|
|
'$content' => $content,
|
|
]);
|
|
}
|
|
}
|