visual tweaks for RemoteProfileAction

This commit is contained in:
Brion Vibber 2010-11-15 15:57:57 -08:00
parent 16f1c764c0
commit 88c35c2cce

View File

@ -47,12 +47,23 @@ class RemoteProfileAction extends ShowstreamAction
} else { } else {
$base = $this->profile->nickname; $base = $this->profile->nickname;
} }
$host = parse_url($this->profile->profileurl, PHP_URL_HOST);
return sprintf(_m('%s on %s'), $base, $host);
} }
function showContent() /**
* Instead of showing notices, link to the original offsite profile.
*/
function showNotices()
{ {
$this->showProfile(); $url = $this->profile->profileurl;
// don't show notices $host = parse_url($url, PHP_URL_HOST);
$markdown = sprintf(
_m('This profile is registered on another site; see [the profile page on %s](%s).'),
$host,
$url);
$html = common_markup_to_html($markdown);
$this->raw($html);
} }
function getFeeds() function getFeeds()
@ -64,10 +75,13 @@ class RemoteProfileAction extends ShowstreamAction
{ {
// none // none
} }
function showLocalNav() function showLocalNav()
{ {
// none...? $nav = new PublicGroupNav($this);
$nav->show();
} }
function showSections() function showSections()
{ {
ProfileAction::showSections(); ProfileAction::showSections();