*/ use Friendica\Core\Addon; use Friendica\Util\Network; // IMPORTANT: SET THIS to your fortunate server define('FORTUNATE_SERVER', 'hostname.com'); 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) { $a->page['htmlhead'] .= '' . "\r\n"; if (FORTUNATE_SERVER != 'hostname.com') { $s = Network::fetchUrl('http://' . FORTUNATE_SERVER . '/cookie.php?numlines=2&equal=1&rand=' . mt_rand()); $b .= '
' . $s . '
'; } }