X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fhome.php;h=dc571aaabd393aef51ee923e28c27b8d21e23d01;hb=071b1c038addc94178eff22a47f0bf126b4a9d28;hp=0320c1b3988a5b20bd2cda7fc02bf443de78a120;hpb=1872cf2b2d14be5c4b8fbc9e2cf61f9fcd9e2f88;p=friendica.git diff --git a/mod/home.php b/mod/home.php index 0320c1b398..dc571aaabd 100644 --- a/mod/home.php +++ b/mod/home.php @@ -1,37 +1,63 @@ user['nickname'])) - goaway( $a->get_baseurl() . "/profile/" . $a->user['nickname'] ); + if (local_user() && ($a->user['nickname'])) { + goaway(System::baseUrl()."/network"); + } - if(strlen(get_config('system','singleuser'))) - goaway( $a->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(&$a) { - - $o = ''; +function home_content(App $a) { - if(x($_SESSION,'theme')) + if (x($_SESSION,'theme')) { unset($_SESSION['theme']); + } + if (x($_SESSION,'mobile-theme')) { + unset($_SESSION['mobile-theme']); + } + + $customhome = false; + $defaultheader = '

'.((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'] .= ''; + } + } - $o .= '

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

'; - if(file_exists('home.html')) - $o .= file_get_contents('home.html'); + $login = Login::form($a->query_string, $a->config['register_policy'] == REGISTER_CLOSED ? 0 : 1); + + $content = ''; + Addon::callHooks("home_content",$content); + + + $tpl = get_markup_template('home.tpl'); + return replace_macros($tpl, [ + '$defaultheader' => $defaultheader, + '$customhome' => $customhome, + '$login' => $login, + '$content' => $content + ]); - $o .= login(($a->config['register_policy'] == REGISTER_CLOSED) ? 0 : 1); - - call_hooks("home_content",$o); - return $o; - -}} +}}