X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=fortunate%2Ffortunate.php;h=427d620c20661a2f92ce8507c834f38d95d2b95d;hb=cf45cafea2fd82bde8acb477f10b7954234c768c;hp=f434d486bd9dcb4907b4c2d2625d5a3ac73acb6c;hpb=d72decea96ac533d1616287cedd848680aed80b3;p=friendica-addons.git diff --git a/fortunate/fortunate.php b/fortunate/fortunate.php index f434d486..427d620c 100644 --- a/fortunate/fortunate.php +++ b/fortunate/fortunate.php @@ -1,14 +1,20 @@ */ +// 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() { @@ -21,7 +27,9 @@ function fortunate_fetch(&$a,&$b) { $a->page['htmlhead'] .= '' . "\r\n"; - $s = fetch_url('http://fortunemod.com/cookie.php?numlines=2&equal=1&rand=' . mt_rand()); - $b .= '
' . $s . '
'; + if(FORTUNATE_SERVER != 'hostname.com') { + $s = fetch_url('http://' . FORTUNATE_SERVER . '/cookie.php?numlines=2&equal=1&rand=' . mt_rand()); + $b .= '
' . $s . '
'; + } }