Friendica Communications Platform
(please note that this is a clone of the repository at github, issues are handled there)
https://friendi.ca
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
586 B
24 lines
586 B
<?php |
|
|
|
|
|
|
|
|
|
|
|
function fortunate_install() { |
|
register_hook('page_end', 'addon/fortunate/fortunate.php', 'fortunate_fetch'); |
|
} |
|
|
|
function fortunate_uninstall() { |
|
unregister_hook('page_end', 'addon/fortunate/fortunate.php', 'fortunate_fetch'); |
|
} |
|
|
|
|
|
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"; |
|
|
|
$s = fetch_url('http://fortunemod.com/cookie.php?numlines=2&equal=1&rand=' . mt_rand()); |
|
$b .= '<div class="fortunate">' . $s . '</div>'; |
|
} |
|
|
|
|