]> git.mxchange.org Git - friendica-addons.git/commitdiff
buglink - first commit
authorFriendika <info@friendika.com>
Fri, 11 Nov 2011 04:14:00 +0000 (20:14 -0800)
committerFriendika <info@friendika.com>
Fri, 11 Nov 2011 04:14:00 +0000 (20:14 -0800)
buglink.tgz [new file with mode: 0644]
buglink/bug-x.gif [new file with mode: 0644]
buglink/buglink.php [new file with mode: 0644]

diff --git a/buglink.tgz b/buglink.tgz
new file mode 100644 (file)
index 0000000..9d27ee6
Binary files /dev/null and b/buglink.tgz differ
diff --git a/buglink/bug-x.gif b/buglink/bug-x.gif
new file mode 100644 (file)
index 0000000..10936ca
Binary files /dev/null and b/buglink/bug-x.gif differ
diff --git a/buglink/buglink.php b/buglink/buglink.php
new file mode 100644 (file)
index 0000000..8091f2f
--- /dev/null
@@ -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>';
+} 
\ No newline at end of file