Link to add to Firefox as feedreader

This commit is contained in:
Stephen Paul Weber 2015-10-28 01:10:28 +00:00
parent 0ba53edd96
commit 85d5cfede5
1 changed files with 11 additions and 0 deletions

View File

@ -419,6 +419,17 @@ class OStatusPlugin extends Plugin
return null;
}
function onEndProfileSettingsActions($out) {
$siteName = common_config('site', 'name');
$js = 'navigator.registerContentHandler("application/vnd.mozilla.maybe.feed", "'.addslashes(common_local_url('ostatussub', null, array('profile' => '%s'))).'", "'.addslashes($siteName).'")';
$out->elementStart('li');
$out->element('a',
array('href' => 'javascript:'.$js),
// TRANS: Option in profile settings to add this instance to Firefox as a feedreader
_('Add to Firefox as feedreader'));
$out->elementEnd('li');
}
/**
* Make sure necessary tables are filled out.
*/