Merge pull request #100 from tonybaldwin/master

add pledgie donation pest link addon thingy
This commit is contained in:
Tobias Diekershoff 2013-02-18 22:18:36 -08:00
commit 1cf8cca257
1 changed files with 16 additions and 0 deletions

16
pledgie/pledgie.php Normal file
View File

@ -0,0 +1,16 @@
<?php
/**
* * Name: Pledgie
* * Description: Show link to Friendica pledgie account for donating
* * Version: 1.0
* * Author: tony baldwin <tony@free-haven.org>
* */
function pledgie_install() { register_hook('page_end', 'addon/pledgie/pledgie.php', 'pledgie_active'); }
function pledgie_uninstall() { unregister_hook('page_end', 'addon/pledgie/pledgie.php', 'pledgie_active'); }
function pledgie_active(&$a,&$b) { $b .= '<div style="position: fixed; bottom: 25px; left: 5px;"><a href=\'http://www.pledgie.com/campaigns/18417\'><img alt=\'Click here to lend your support to: Beyond Social Networking and make a donation at www.pledgie.com !\' src=\'http://www.pledgie.com/campaigns/18417.png?skin_name=chrome\' border=\'0\' target=\'_blank\' /></a></div>'; }