buglink - first commit
This commit is contained in:
parent
b5741aacf6
commit
9d42d6a7aa
3 changed files with 21 additions and 0 deletions
BIN
buglink.tgz
Normal file
BIN
buglink.tgz
Normal file
Binary file not shown.
BIN
buglink/bug-x.gif
Normal file
BIN
buglink/bug-x.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 134 B |
21
buglink/buglink.php
Normal file
21
buglink/buglink.php
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
/**
|
||||
* Name: BugLink
|
||||
* Description: Show link to Friendica bug site at bottom of page
|
||||
* Version: 1.0
|
||||
* Author: Mike Macgirvin <mike@macgirvin.com>
|
||||
*/
|
||||
|
||||
|
||||
function buglink_install() {
|
||||
register_hook('page_end', 'addon/buglink/buglink.php', 'buglink_active');
|
||||
}
|
||||
|
||||
function piwik_uninstall() {
|
||||
unregister_hook('page_end', 'addon/buglink/buglink.php', 'buglink_active');
|
||||
}
|
||||
|
||||
|
||||
function buglink_active(&$a,&$b) {
|
||||
$b .= '<div style="position: fixed; bottom: 5px; left: 5px;"><a href="http://bugs.friendica.com" title="' . t('Report Bug') . '"><img src="addon/buglink/bug-x.gif" alt="' . t('Report Bug') . '" /></a></div>';
|
||||
}
|
Loading…
Reference in a new issue