X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fhome.php;h=d28bf3cb43a9fc62b694fae2c2af0d59806b6c97;hb=6d1b98dc0e951445e447a60d3ee17368891d17b8;hp=ed66bad147470f3ca0857d41d5e094e3b110447c;hpb=9ca789b9529dceedc35f637804179e1034b3f1d9;p=friendica.git diff --git a/mod/home.php b/mod/home.php index ed66bad147..d28bf3cb43 100644 --- a/mod/home.php +++ b/mod/home.php @@ -1,25 +1,32 @@ user['nickname'])) { - goaway(App::get_baseurl()."/network"); + goaway(System::baseUrl()."/network"); } - if (strlen(get_config('system','singleuser'))) { - goaway(App::get_baseurl()."/profile/" . get_config('system','singleuser')); + if (strlen(Config::get('system','singleuser'))) { + goaway(System::baseUrl()."/profile/" . Config::get('system','singleuser')); } }} if(! function_exists('home_content')) { -function home_content(App &$a) { - - $o = ''; +function home_content(App $a) { if (x($_SESSION,'theme')) { unset($_SESSION['theme']); @@ -28,21 +35,31 @@ function home_content(App &$a) { unset($_SESSION['mobile-theme']); } - /// @TODO No absolute path used, maybe risky (security) - if (file_exists('home.html')) { - if (file_exists('home.css')) { - $a->page['htmlhead'] .= ''; - } + $customhome = false; + $defaultheader = '

' . (Config::get('config', 'sitename') ? L10n::t('Welcome to %s', Config::get('config', 'sitename')) : '') . '

'; - $o .= file_get_contents('home.html'); - } else { - $o .= '

'.((x($a->config,'sitename')) ? sprintf(t("Welcome to %s"), $a->config['sitename']) : "").'

'; + $homefilepath = $a->basepath . "/home.html"; + $cssfilepath = $a->basepath . "/home.css"; + if (file_exists($homefilepath)) { + $customhome = $homefilepath; + if (file_exists($cssfilepath)) { + $a->page['htmlhead'] .= ''; + } } + $login = Login::form($a->query_string, intval(Config::get('config', 'register_policy')) === REGISTER_CLOSED ? 0 : 1); + + $content = ''; + Addon::callHooks("home_content",$content); - $o .= login(($a->config['register_policy'] == REGISTER_CLOSED) ? 0 : 1); - call_hooks("home_content",$o); + $tpl = get_markup_template('home.tpl'); + return replace_macros($tpl, [ + '$defaultheader' => $defaultheader, + '$customhome' => $customhome, + '$login' => $login, + '$content' => $content + ]); return $o;