X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=mod%2Fhome.php;h=dc571aaabd393aef51ee923e28c27b8d21e23d01;hb=071b1c038addc94178eff22a47f0bf126b4a9d28;hp=4905789db37a69e559128ee13dae200e1b5e435f;hpb=8f7e81a8b31aa8d734d9fe014ecdb7d2a13301d2;p=friendica.git diff --git a/mod/home.php b/mod/home.php index 4905789db3..dc571aaabd 100644 --- a/mod/home.php +++ b/mod/home.php @@ -1,26 +1,63 @@ user['nickname']) - goaway( $a->get_baseurl() . "/profile/" . $a->user['nickname'] ); - else - goaway( $a->get_baseurl() . "/profile/" . $_SESSION['uid'] ); + if (local_user() && ($a->user['nickname'])) { + goaway(System::baseUrl()."/network"); } - $a->page['htmlhead'] .= "get_baseurl() . "/profile/%s" . "\" />\r\n"; - -}} + if (strlen(Config::get('system','singleuser'))) { + goaway(System::baseUrl()."/profile/" . Config::get('system','singleuser')); + } + +}} if(! function_exists('home_content')) { -function home_content(&$a) { - $a->page['header'] .= ''; - $a->page['footer'] .= "
Powered by mistpark
"; - $o .= '

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

'; - $o .= login(($a->config['register_policy'] == REGISTER_CLOSED) ? 0 : 1); +function home_content(App $a) { + + 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'] .= ''; + } + } + + $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 + ]); + return $o; - -}} \ No newline at end of file +}}