]> git.mxchange.org Git - friendica.git/blobdiff - mod/home.php
Let an item be accssible via the GUI (additionally to uid and item id)
[friendica.git] / mod / home.php
index 20d38cfca9967749f477131b46dc08d637c68171..f703263a2c6a532831bcfc5431c1e944e53ee0ae 100644 (file)
@@ -3,6 +3,9 @@
 if(! function_exists('home_init')) {
 function home_init(&$a) {
 
+       $ret = array();
+       call_hooks('home_init',$ret);
+
        if(local_user() && ($a->user['nickname']))
                goaway( $a->get_baseurl() . "/profile/" . $a->user['nickname'] );
 
@@ -19,10 +22,17 @@ function home_content(&$a) {
 
        if(x($_SESSION,'theme'))
                unset($_SESSION['theme']);
+       if(x($_SESSION,'mobile-theme'))
+               unset($_SESSION['mobile-theme']);
+
+       if(file_exists('home.html')){
+               if(file_exists('home.css')){
+                         $a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/home.css' . '" media="all" />';}
+                                         
+               $o .= file_get_contents('home.html');}
+               
+       else    $o .= '<h1>' . ((x($a->config,'sitename')) ? sprintf( t("Welcome to %s") ,$a->config['sitename']) : "" ) . '</h1>';
 
-       $o .= '<h1>' . ((x($a->config,'sitename')) ? t("Welcome to ").$a->config['sitename'] : "" ) . '</h1>';
-       if(file_exists('home.html'))
-               $o .= file_get_contents('home.html');
 
        $o .= login(($a->config['register_policy'] == REGISTER_CLOSED) ? 0 : 1);