diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-07-01 16:48:07 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-07-01 16:48:07 -0700 |
commit | 6348e70daa113e8b3203de8fbc919d08c90d972e (patch) | |
tree | 1bc3dd3bc85fe6136411086785cf6753960e22f9 /mod/home.php | |
download | volse-hubzilla-6348e70daa113e8b3203de8fbc919d08c90d972e.tar.gz volse-hubzilla-6348e70daa113e8b3203de8fbc919d08c90d972e.tar.bz2 volse-hubzilla-6348e70daa113e8b3203de8fbc919d08c90d972e.zip |
Initial checkin
Diffstat (limited to 'mod/home.php')
-rw-r--r-- | mod/home.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/mod/home.php b/mod/home.php new file mode 100644 index 000000000..44f2a9888 --- /dev/null +++ b/mod/home.php @@ -0,0 +1,24 @@ +<?php + +if(! function_exists('home_init')) { +function home_init(&$a) { + + if(x($_SESSION,'authenticated') && (x($_SESSION,'uid'))) { + if($a->user['nickname']) + goaway( $a->get_baseurl() . "/profile/" . $a->user['nickname'] ); + else + goaway( $a->get_baseurl() . "/profile/" . $_SESSION['uid'] ); + } +}} + + +if(! function_exists('home_content')) { +function home_content(&$a) { + + $a->page['footer'] .= "<div class=\"powered\" >Powered by <a href=\"http://dfrn.org\" name=\"DFRN.org\" >DFRN</a></div>"; + $o .= '<h1>Welcome' . ((x($a->config,'sitename')) ? " to {$a->config['sitename']}" : "" ) . '</h1>'; + $o .= login(1); + return $o; + + +}}
\ No newline at end of file |