]> git.mxchange.org Git - friendica-addons.git/blobdiff - fortunate/fortunate.php
[fortunate] Mark addon as unsupported
[friendica-addons.git] / fortunate / fortunate.php
index 4d87bffe77eeadb42061bd4a43d47952d54e6902..ebece48981546f3a17dfae8a6aa7d11e8a22607e 100644 (file)
@@ -4,33 +4,36 @@
  * 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>
+ * Status: Unsupported
  */
 use Friendica\Core\Addon;
+use Friendica\Util\Network;
 
 // IMPORTANT: SET THIS to your fortunate server
 
-define ('FORTUNATE_SERVER', 'hostname.com');
+define('FORTUNATE_SERVER', 'hostname.com');
 
-function fortunate_install() {
+function fortunate_install()
+{
        Addon::registerHook('page_end', 'addon/fortunate/fortunate.php', 'fortunate_fetch');
-       if(FORTUNATE_SERVER == 'hostname.com' && is_site_admin()) {
+       if (FORTUNATE_SERVER == 'hostname.com' && is_site_admin()) {
                notice('Fortunate addon requires configuration. See README');
        }
 }
 
-function fortunate_uninstall() {
+function fortunate_uninstall()
+{
        Addon::unregisterHook('page_end', 'addon/fortunate/fortunate.php', 'fortunate_fetch');
 }
 
 
-function fortunate_fetch(&$a,&$b) {
-
-       $a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' 
+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());
+       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>';
        }
 }
-