]> git.mxchange.org Git - friendica-addons.git/blobdiff - fortunate/fortunate.php
Reviving fortunate - but now requires configuring a server instead of using mine...
[friendica-addons.git] / fortunate / fortunate.php
diff --git a/fortunate/fortunate.php b/fortunate/fortunate.php
new file mode 100644 (file)
index 0000000..427d620
--- /dev/null
@@ -0,0 +1,35 @@
+<?php
+/**
+ * Name: Fortunate
+ * Description: Add a random fortune cookie at the bottom of every pages. [Requires manual confguration.]
+ * Version: 1.0
+ * Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
+ */
+
+// IMPORTANT: SET THIS to your fortunate server
+
+define ('FORTUNATE_SERVER', 'hostname.com');
+
+function fortunate_install() {
+       register_hook('page_end', 'addon/fortunate/fortunate.php', 'fortunate_fetch');
+       if(FORTUNATE_SERVER == 'hostname.com' && is_site_admin()) {
+               notice('Fortunate plugin requires configuration. See README');
+       }
+}
+
+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";
+
+       if(FORTUNATE_SERVER != 'hostname.com') {
+               $s = fetch_url('http://' . FORTUNATE_SERVER . '/cookie.php?numlines=2&equal=1&rand=' . mt_rand());
+               $b .= '<div class="fortunate">' . $s . '</div>';
+       }
+}
+