friendica/mod/home.php

68 lines
1.6 KiB
PHP
Raw Normal View History

2010-07-02 01:48:07 +02:00
<?php
/**
* @file mod/home.php
*/
use Friendica\App;
use Friendica\Core\Addon;
use Friendica\Core\Config;
use Friendica\Core\L10n;
use Friendica\Core\Renderer;
2017-08-26 08:04:21 +02:00
use Friendica\Core\System;
use Friendica\Module\Login;
if(! function_exists('home_init')) {
function home_init(App $a) {
2010-07-02 01:48:07 +02:00
$ret = [];
Addon::callHooks('home_init',$ret);
2011-12-15 10:08:19 +01:00
if (local_user() && ($a->user['nickname'])) {
$a->internalRedirect('network');
}
if (strlen(Config::get('system','singleuser'))) {
$a->internalRedirect('profile/' . Config::get('system','singleuser'));
}
2010-09-17 14:19:56 +02:00
2010-07-02 01:48:07 +02:00
}}
if(! function_exists('home_content')) {
function home_content(App $a) {
2010-09-17 14:19:56 +02:00
if (x($_SESSION,'theme')) {
unset($_SESSION['theme']);
}
if (x($_SESSION,'mobile-theme')) {
unset($_SESSION['mobile-theme']);
}
2018-01-17 17:27:27 +01:00
$customhome = false;
$defaultheader = '<h1>' . (Config::get('config', 'sitename') ? L10n::t('Welcome to %s', Config::get('config', 'sitename')) : '') . '</h1>';
2018-01-17 13:27:41 +01:00
$homefilepath = $a->getBasePath() . "/home.html";
$cssfilepath = $a->getBasePath() . "/home.css";
2018-01-17 13:27:41 +01:00
if (file_exists($homefilepath)) {
$customhome = $homefilepath;
if (file_exists($cssfilepath)) {
$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="'.System::baseUrl().'/home.css'.'" media="all" />';
}
}
$login = Login::form($a->query_string, intval(Config::get('config', 'register_policy')) === REGISTER_CLOSED ? 0 : 1);
2018-01-17 13:27:41 +01:00
$content = '';
Addon::callHooks("home_content",$content);
2010-11-19 00:06:33 +01:00
2018-01-17 13:27:41 +01:00
$tpl = get_markup_template('home.tpl');
return Renderer::replaceMacros($tpl, [
2018-01-17 13:27:41 +01:00
'$defaultheader' => $defaultheader,
'$customhome' => $customhome,
'$login' => $login,
'$content' => $content
]);
2010-07-02 01:48:07 +02:00
return $o;
}}