2015-12-08 13:57:50 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Name: BugLink
|
2016-02-28 12:11:12 +01:00
|
|
|
* Description: Show link to project bug site at bottom of page
|
2015-12-08 13:57:50 +01:00
|
|
|
* Version: 1.0
|
|
|
|
* Author: Mike Macgirvin <mike@macgirvin.com>
|
2016-02-28 12:11:12 +01:00
|
|
|
* Maintainer: Mike Macgirvin <mike@macgirvin.com>
|
|
|
|
* MinVersion: 1.0
|
2015-12-08 13:57:50 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
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>'; }
|