create tgz
This commit is contained in:
parent
dc6cf970c8
commit
c91eb5a743
2 changed files with 4 additions and 10 deletions
BIN
buglink.tgz
BIN
buglink.tgz
Binary file not shown.
|
@ -7,15 +7,9 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
function buglink_install() {
|
function buglink_install() { register_hook('page_end', 'addon/buglink/buglink.php', 'buglink_active'); }
|
||||||
register_hook('page_end', 'addon/buglink/buglink.php', 'buglink_active');
|
|
||||||
}
|
|
||||||
|
|
||||||
function buglink_uninstall() {
|
|
||||||
unregister_hook('page_end', 'addon/buglink/buglink.php', 'buglink_active');
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
function buglink_active(&$a,&$b) {
|
function buglink_uninstall() { unregister_hook('page_end', 'addon/buglink/buglink.php', 'buglink_active') }
|
||||||
$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>';
|
|
||||||
}
|
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