diff options
author | friendica <info@friendica.com> | 2012-11-08 18:44:33 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-11-08 18:44:33 -0800 |
commit | f66a3d26befeb9966d9059164864c49d1f5a7721 (patch) | |
tree | 9a95dfcf2612ae67fb29072d81515025274ba5d8 | |
parent | c1b931549c762b90f6c6d67b604c8b0fc09c0a9f (diff) | |
download | volse-hubzilla-f66a3d26befeb9966d9059164864c49d1f5a7721.tar.gz volse-hubzilla-f66a3d26befeb9966d9059164864c49d1f5a7721.tar.bz2 volse-hubzilla-f66a3d26befeb9966d9059164864c49d1f5a7721.zip |
magic auth indicator (link is dead at the moment)
-rw-r--r-- | include/nav.php | 32 | ||||
-rw-r--r-- | view/tpl/nav.tpl | 11 |
2 files changed, 28 insertions, 15 deletions
diff --git a/include/nav.php b/include/nav.php index c714502a1..969a20853 100644 --- a/include/nav.php +++ b/include/nav.php @@ -36,8 +36,6 @@ EOT; * Placeholder div for popup panel */ - $a->page['nav'] .= '<div id="panel" style="display: none;"></div>' ; - /** * * Our network is distributed, and as you visit friends some of the @@ -46,14 +44,17 @@ EOT; * */ - $channel = $a->get_channel(); - $xchan = q("select * from xchan where xchan_hash = '%s' limit 1", - dbesc($channel['channel_hash']) - ); + if(local_user()) { + $channel = $a->get_channel(); + $observer = $a->get_observer(); + } + elseif(remote_user()) + $observer = $a->get_observer(); + - $myident = ((is_array($channel) && isset($channel['channel_address'])) ? $channel['channel_address'] . '@' : ''); + $myident = (($channel) ? $channel['xchan_address'] : ''); - $sitelocation = $myident . substr($a->get_baseurl($ssl_state),strpos($a->get_baseurl($ssl_state),'//') + 2 ); + $sitelocation = (($myident) ? $myident : $a->get_hostname()); // nav links: array of array('href', 'text', 'extra css classes', 'title') @@ -76,16 +77,20 @@ EOT; $nav['usermenu'][] = Array('photos/' . $channel['channel_address'], t('Photos'), "", t('Your photos')); $nav['usermenu'][] = Array('events/', t('Events'), "", t('Your events')); - $userinfo = array( - 'icon' => $xchan[0]['xchan_photo_s'], - 'name' => $channel['channel_name'], - ); - } else { $nav['login'] = Array('login',t('Login'), ($a->module == 'login'?'selected':''), t('Sign in')); } + if($observer) { + $userinfo = array( + 'icon' => $observer['xchan_photo_s'], + 'name' => $observer['xchan_addr'], + ); + } + + + $nav['lock'] = array('rmagic','',(($observer) ? 'lock' : 'unlock'), (($observer) ? $observer['xchan_addr'] : t('Click to authenticate to your home hub'))); /** * "Home" should also take you home from an authenticated remote profile connection @@ -188,6 +193,7 @@ EOT; '$banner' => $banner, '$emptynotifications' => t('Nothing new here'), '$userinfo' => $userinfo, + '$localuser' => local_user(), '$sel' => $a->nav_sel, '$apps' => $a->get_apps(), )); diff --git a/view/tpl/nav.tpl b/view/tpl/nav.tpl index d36988281..373af036d 100644 --- a/view/tpl/nav.tpl +++ b/view/tpl/nav.tpl @@ -1,13 +1,18 @@ <header> - {# $langselector #} - <div id="site-location">$sitelocation</div> <div id="banner">$banner</div> </header> <nav> <ul> + {{ if $nav.lock }} + <li id="nav-rmagic-link" class="nav-menu-icon" > + <a class="icon $nav.lock.2" href="$nav.lock.0" title="$nav.lock.3" >$nav.lock.1</a> + </li> + {{ endif }} + {{ if $userinfo }} <li id="nav-user-linkmenu" class="nav-menu-icon"><a href="#" rel="#nav-user-menu" title="$sitelocation"><img src="$userinfo.icon" alt="$userinfo.name"></a> + {{ if $localuser }} <ul id="nav-user-menu" class="menu-popup"> {{ for $nav.usermenu as $usermenu }} <li><a class="$usermenu.2" href="$usermenu.0" title="$usermenu.3">$usermenu.1</a></li> @@ -17,6 +22,7 @@ {{ if $nav.messages }}<li><a class="$nav.messages.2" href="$nav.messages.0" title="$nav.messages.3" >$nav.messages.1</a></li>{{ endif }} {{ if $nav.contacts }}<li><a class="$nav.contacts.2" href="$nav.contacts.0" title="$nav.contacts.3" >$nav.contacts.1</a></li>{{ endif }} </ul> + {{ endif }} </li> {{ endif }} @@ -100,3 +106,4 @@ </ul> <div style="position: fixed; top: 3px; left: 5px; z-index:9999">$langselector</div> +<div id="panel" style="display: none;"></div> |