friendica-addons/buglink/buglink.php

16 lines
720 B
PHP
Raw Normal View History

2011-11-11 05:14:00 +01:00
<?php
/**
* Name: BugLink
* Description: Show link to Friendica bug site at bottom of page
* Version: 1.0
* Author: Mike Macgirvin <mike@macgirvin.com>
*/
use Friendica\Core\Addon;
2011-11-11 05:14:00 +01:00
function buglink_install() { Addon::registerHook('page_end', 'addon/buglink/buglink.php', 'buglink_active'); }
2011-11-11 05:14:00 +01:00
function buglink_uninstall() { Addon::unregisterHook('page_end', 'addon/buglink/buglink.php', 'buglink_active'); }
2011-11-11 05:14:00 +01:00
2015-07-30 14:16:49 +02:00
function buglink_active(&$a,&$b) { $b .= '<div id="buglink_wrapper" style="position: fixed; bottom: 5px; left: 5px;"><a href="https://github.com/friendica/friendica/issues" target="_blank" title="' . t('Report Bug') . '"><img src="addon/buglink/bug-x.gif" alt="' . t('Report Bug') . '" /></a></div>'; }