X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fhome.php;h=b1708d80a2f02e36fe78b650841581508323a316;hb=8bdc906013461464b475c4f10918adff8730dea6;hp=b04c728968eea9f226a50e1efd19b0fbcd0a98ce;hpb=f0b640058427aff2d9d60899f9005980ab89c0ef;p=friendica.git diff --git a/mod/home.php b/mod/home.php index b04c728968..b1708d80a2 100644 --- a/mod/home.php +++ b/mod/home.php @@ -1,27 +1,49 @@ user['nickname'])) - goaway( $a->get_baseurl() . "/profile/" . $a->user['nickname'] ); + $ret = array(); + call_hooks('home_init',$ret); - $a->page['htmlhead'] .= "get_baseurl() . "/profile/%s" . "\" />\r\n"; -}} + if (local_user() && ($a->user['nickname'])) { + goaway(App::get_baseurl()."/network"); + } + + if (strlen(get_config('system','singleuser'))) { + goaway(App::get_baseurl()."/profile/" . get_config('system','singleuser')); + } +}} if(! function_exists('home_content')) { -function home_content(&$a) { +function home_content(App $a) { $o = ''; - if(! (x($a->page,'footer'))) - $a->page['footer'] = ''; - $a->page['footer'] .= "
Powered by mistpark
"; - $o .= '

Welcome' . ((x($a->config,'sitename')) ? " to {$a->config['sitename']}" : "" ) . '

'; - if(file_exists('home.html')) + + if (x($_SESSION,'theme')) { + unset($_SESSION['theme']); + } + if (x($_SESSION,'mobile-theme')) { + 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'] .= ''; + } + $o .= file_get_contents('home.html'); + } else { + $o .= '

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

'; + } + + $o .= login(($a->config['register_policy'] == REGISTER_CLOSED) ? 0 : 1); + + call_hooks("home_content",$o); + return $o; - -}} \ No newline at end of file +}}