]> git.mxchange.org Git - friendica-addons.git/blob - pledgie/pledgie.php
Pledgie isn't active anymore, so this addon is deactivated
[friendica-addons.git] / pledgie / pledgie.php
1 <?php
2 /**
3  *  * Name: Pledgie
4  *   * Description: Show link to Friendica pledgie account for donating
5  *    * Version: 1.0
6  *     * Author: tony baldwin <tony@free-haven.org>
7  * Status: Unsupported
8  *      */
9
10 function pledgie_install() { register_hook('page_end', 'addon/pledgie/pledgie.php', 'pledgie_active'); }
11
12
13 function pledgie_uninstall() { unregister_hook('page_end', 'addon/pledgie/pledgie.php', 'pledgie_active'); }
14
15 function pledgie_active(&$a,&$b) {
16         //$b .= '<div style="position: fixed; bottom: 5px; left: 60px;"><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>';
17 }