X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fhome.php;h=b1708d80a2f02e36fe78b650841581508323a316;hb=8bdc906013461464b475c4f10918adff8730dea6;hp=d796052ade32ef2154d62be27f5a7e2d0c5f830e;hpb=5ca174ae34edb598e30546e67165b8a2ad77ed59;p=friendica.git diff --git a/mod/home.php b/mod/home.php index d796052ade..b1708d80a2 100644 --- a/mod/home.php +++ b/mod/home.php @@ -1,26 +1,49 @@ user['nickname']) - goaway( $a->get_baseurl() . "/profile/" . $a->user['nickname'] ); - else - goaway( $a->get_baseurl() . "/profile/" . $_SESSION['uid'] ); + $ret = array(); + call_hooks('home_init',$ret); + + 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')); } - $a->page['htmlhead'] .= "get_baseurl() . "/profile/%s" . "\" />\r\n"; - -}} +}} if(! function_exists('home_content')) { -function home_content(&$a) { +function home_content(App $a) { + + $o = ''; + + 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); - $a->page['footer'] .= "
Powered by DFRN
"; - $o .= '

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

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