]> git.mxchange.org Git - friendica-addons.git/blobdiff - fortunate/fortunate.php
Merge pull request #554 from fabrixxm/3.6-rc-it
[friendica-addons.git] / fortunate / fortunate.php
index 4d87bffe77eeadb42061bd4a43d47952d54e6902..8c15caa6d9a6df18732d8fb9aa6796f4a22f6159 100644 (file)
@@ -6,31 +6,33 @@
  * Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
  */
 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) {
-
+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>';
        }
 }
-