mirror of
https://github.com/YunoHost-Apps/hubzilla_ynh.git
synced 2024-09-03 19:26:21 +02:00
15 lines
667 B
PHP
Executable file
15 lines
667 B
PHP
Executable file
<?php
|
|
/**
|
|
* Name: BugLink
|
|
* Description: Show link to Red bug site at bottom of page
|
|
* Version: 1.0
|
|
* Author: Mike Macgirvin <mike@macgirvin.com>
|
|
*/
|
|
|
|
|
|
function buglink_load() { register_hook('page_end', 'addon/buglink/buglink.php', 'buglink_active'); }
|
|
|
|
|
|
function buglink_unload() { unregister_hook('page_end', 'addon/buglink/buglink.php', 'buglink_active'); }
|
|
|
|
function buglink_active(&$a,&$b) { $b .= '<div style="position: fixed; bottom: 5px; left: 5px;" class="hidden-xs"><a href="https://github.com/redmatrix/hubzilla/issues" target="_blank" title="' . t('Report Bug') . '"><img src="addon/buglink/bug-x.gif" alt="' . t('Report Bug') . '" /></a></div>'; }
|