2012-10-13 08:10:25 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Name: Fortunate
|
|
|
|
* 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>
|
|
|
|
*/
|
2018-01-17 01:51:12 +01:00
|
|
|
use Friendica\Core\Addon;
|
2018-01-27 14:52:02 +01:00
|
|
|
use Friendica\Util\Network;
|
2012-10-13 08:10:25 +02:00
|
|
|
|
|
|
|
// IMPORTANT: SET THIS to your fortunate server
|
|
|
|
|
2018-01-27 14:52:02 +01:00
|
|
|
define('FORTUNATE_SERVER', 'hostname.com');
|
2012-10-13 08:10:25 +02:00
|
|
|
|
2018-01-27 14:52:02 +01:00
|
|
|
function fortunate_install()
|
|
|
|
{
|
2018-01-17 01:51:12 +01:00
|
|
|
Addon::registerHook('page_end', 'addon/fortunate/fortunate.php', 'fortunate_fetch');
|
2018-01-27 14:52:02 +01:00
|
|
|
if (FORTUNATE_SERVER == 'hostname.com' && is_site_admin()) {
|
2018-01-20 17:01:59 +01:00
|
|
|
notice('Fortunate addon requires configuration. See README');
|
2012-10-13 08:10:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-27 14:52:02 +01:00
|
|
|
function fortunate_uninstall()
|
|
|
|
{
|
2018-01-17 01:51:12 +01:00
|
|
|
Addon::unregisterHook('page_end', 'addon/fortunate/fortunate.php', 'fortunate_fetch');
|
2012-10-13 08:10:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-01-27 14:52:02 +01:00
|
|
|
function fortunate_fetch(&$a, &$b)
|
|
|
|
{
|
2012-10-13 08:10:25 +02:00
|
|
|
$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="'
|
|
|
|
. $a->get_baseurl() . '/addon/fortunate/fortunate.css' . '" media="all" />' . "\r\n";
|
|
|
|
|
2018-01-27 14:52:02 +01:00
|
|
|
if (FORTUNATE_SERVER != 'hostname.com') {
|
2018-01-27 17:23:04 +01:00
|
|
|
$s = Network::fetchUrl('http://' . FORTUNATE_SERVER . '/cookie.php?numlines=2&equal=1&rand=' . mt_rand());
|
2012-10-13 08:10:25 +02:00
|
|
|
$b .= '<div class="fortunate">' . $s . '</div>';
|
|
|
|
}
|
|
|
|
}
|