]> git.mxchange.org Git - friendica.git/blobdiff - mod/home.php
Continued a bit:
[friendica.git] / mod / home.php
index b04c728968eea9f226a50e1efd19b0fbcd0a98ce..b1708d80a2f02e36fe78b650841581508323a316 100644 (file)
@@ -1,27 +1,49 @@
 <?php
 
 if(! function_exists('home_init')) {
-function home_init(&$a) {
+function home_init(App $a) {
 
-       if(local_user() && ($a->user['nickname']))
-                       goaway( $a->get_baseurl() . "/profile/" . $a->user['nickname'] );
+       $ret = array();
+       call_hooks('home_init',$ret);
 
-       $a->page['htmlhead'] .= "<meta name=\"dfrn-template\" content=\"" . $a->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'] .= "<div class=\"powered\" >Powered by <a href=\"http://mistpark.com\" name=\"mistpark\" >mistpark</a></div>";
-       $o .= '<h1>Welcome' . ((x($a->config,'sitename')) ? " to {$a->config['sitename']}" : "" ) . '</h1>';
-       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'] .= '<link rel="stylesheet" type="text/css" href="'.App::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
+}}