2011-11-11 04:14:00 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Name: BugLink
|
|
|
|
* Description: Show link to Friendica bug site at bottom of page
|
|
|
|
* Version: 1.0
|
|
|
|
* Author: Mike Macgirvin <mike@macgirvin.com>
|
|
|
|
*/
|
2018-07-29 20:22:50 +00:00
|
|
|
|
|
|
|
use Friendica\App;
|
2018-12-26 07:28:16 +00:00
|
|
|
use Friendica\Core\Hook;
|
2020-01-18 21:07:06 +00:00
|
|
|
use Friendica\DI;
|
2011-11-11 04:14:00 +00:00
|
|
|
|
2018-01-22 19:03:11 +00:00
|
|
|
function buglink_install()
|
|
|
|
{
|
2018-12-26 07:28:16 +00:00
|
|
|
Hook::register('page_end', 'addon/buglink/buglink.php', 'buglink_active');
|
2018-01-22 19:03:11 +00:00
|
|
|
}
|
2011-11-11 04:14:00 +00:00
|
|
|
|
2023-01-14 02:16:09 +00:00
|
|
|
function buglink_active(string &$b)
|
2018-01-22 19:03:11 +00:00
|
|
|
{
|
2020-02-25 01:08:43 +00:00
|
|
|
$b .= '<div id="buglink_wrapper" style="position: fixed; bottom: 5px; left: 5px;"><a href="https://github.com/friendica/friendica/issues" target="_blank" rel="noopener noreferrer" title="' . DI::l10n()->t('Report Bug') . '"><img src="addon/buglink/bug-x.gif" alt="' . DI::l10n()->t('Report Bug') . '" /></a></div>';
|
2018-01-22 19:03:11 +00:00
|
|
|
}
|