]> 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 9239f1d1735cda650fab95d600903cb5e095c671..f703263a2c6a532831bcfc5431c1e944e53ee0ae 100644 (file)
@@ -3,10 +3,15 @@
 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'] );
+               goaway( $a->get_baseurl() . "/profile/" . $a->user['nickname'] );
+
+       if(strlen(get_config('system','singleuser')))
+               goaway( $a->get_baseurl() . "/profile/" . get_config('system','singleuser'));
 
-       $a->page['htmlhead'] .= "<meta name=\"dfrn-template\" content=\"" . $a->get_baseurl() . "/profile/%s" . "\" />\r\n"; 
 }}
 
 
@@ -14,14 +19,26 @@ if(! function_exists('home_content')) {
 function home_content(&$a) {
 
        $o = '';
-       if(! (x($a->page,'footer')))
-               $a->page['footer'] = '';
-       $a->page['footer'] .= "<div class=\"powered\" >Powered by <a href=\"http://friendika.com\" name=\"mistpark\" >friendika</a></div>";
-       $o .= '<h1>Welcome' . ((x($a->config,'sitename')) ? " to {$a->config['sitename']}" : "" ) . '</h1>';
-       if(file_exists('home.html'))
-               $o .= file_get_contents('home.html');
+
+       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 .= login(($a->config['register_policy'] == REGISTER_CLOSED) ? 0 : 1);
+       
+       call_hooks("home_content",$o);
+       
        return $o;
 
        
-}} 
\ No newline at end of file
+}}