]> git.mxchange.org Git - friendica.git/commitdiff
first checkin fortunate plugin
authorFriendika <info@friendika.com>
Wed, 12 Jan 2011 02:46:37 +0000 (18:46 -0800)
committerFriendika <info@friendika.com>
Wed, 12 Jan 2011 02:46:37 +0000 (18:46 -0800)
addon/fortunate/fortunate.css [new file with mode: 0644]
addon/fortunate/fortunate.php [new file with mode: 0644]

diff --git a/addon/fortunate/fortunate.css b/addon/fortunate/fortunate.css
new file mode 100644 (file)
index 0000000..61813b7
--- /dev/null
@@ -0,0 +1,7 @@
+.fortunate {
+       margin-top: 25px;
+       margin-left: 100px;
+       margin-bottom: 25px;
+       color: #000088;
+       font-size: 14px;
+}
\ No newline at end of file
diff --git a/addon/fortunate/fortunate.php b/addon/fortunate/fortunate.php
new file mode 100644 (file)
index 0000000..b91080f
--- /dev/null
@@ -0,0 +1,24 @@
+<?php
+
+
+
+
+
+function fortunate_install() {
+       register_hook('page_end', 'addon/fortunate/fortunate.php', 'fortunate_fetch');
+}
+
+function fortunate_uninstall() {
+       unregister_hook('page_end', 'addon/fortunate/fortunate.php', 'fortunate_fetch');
+}
+
+
+function fortunate_fetch($a,&$b) {
+
+       $a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' 
+               . $a->get_baseurl() . '/addon/fortunate/fortunate.css' . '" media="all" />' . "\r\n";
+
+       $s = fetch_url('http://fortunemod.com/cookie.php?numlines=2&equal=1&rand=' . mt_rand());
+       $b .= '<div class="fortunate">' . $s . '</div>';
+}
+