]> git.mxchange.org Git - friendica-addons.git/blobdiff - fortunate/fortunate.php
Remove references to include/bbcode.php
[friendica-addons.git] / fortunate / fortunate.php
index f434d486bd9dcb4907b4c2d2625d5a3ac73acb6c..8c15caa6d9a6df18732d8fb9aa6796f4a22f6159 100644 (file)
@@ -1,27 +1,38 @@
 <?php
 /**
  * Name: Fortunate
- * Description: Add a random fortune cookie at the bottom of every pages.
+ * 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>
  */
+use Friendica\Core\Addon;
+use Friendica\Util\Network;
 
+// IMPORTANT: SET THIS to your fortunate server
 
-function fortunate_install() {
-       register_hook('page_end', 'addon/fortunate/fortunate.php', 'fortunate_fetch');
-}
+define('FORTUNATE_SERVER', 'hostname.com');
 
-function fortunate_uninstall() {
-       unregister_hook('page_end', 'addon/fortunate/fortunate.php', 'fortunate_fetch');
+function fortunate_install()
+{
+       Addon::registerHook('page_end', 'addon/fortunate/fortunate.php', 'fortunate_fetch');
+       if (FORTUNATE_SERVER == 'hostname.com' && is_site_admin()) {
+               notice('Fortunate addon requires configuration. See README');
+       }
 }
 
+function fortunate_uninstall()
+{
+       Addon::unregisterHook('page_end', 'addon/fortunate/fortunate.php', 'fortunate_fetch');
+}
 
-function fortunate_fetch(&$a,&$b) {
 
+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>';
+       if (FORTUNATE_SERVER != 'hostname.com') {
+               $s = Network::fetchUrl('http://' . FORTUNATE_SERVER . '/cookie.php?numlines=2&equal=1&rand=' . mt_rand());
+               $b .= '<div class="fortunate">' . $s . '</div>';
+       }
 }
-