public
Description: This extension only implement the API to have in Coppermine Gallery the possibility to block spammer's with data from "Project Honey Pot", you need get a key from "Project Honey Pot" website.
Homepage: http://tuxsoul.github.com/cpg-httpbl
Clone URL: git://github.com/tuxsoul/cpg-httpbl.git
Click here to lend your support to: cpg-httpbl and make a donation at www.pledgie.com !
cpg-httpbl / configuration.php
100644 57 lines (51 sloc) 2.587 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
/*
******************************************************************************
CPG-HttpBL Plugin
******************************************************************************
Author: Mario Oyorzabal Salgado
Blog: http://blog.tuxsoul.com/
E-mail: <tuxsoul@tuxsoul.com>
Web: http://code.google.com/p/cpg-dnsbl/
Donate: http://tinyurl.com/36mzoa
******************************************************************************
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
******************************************************************************
*/
 
if (!defined('IN_COPPERMINE')) die('Not in Coppermine...');
 
$name='CPG-HttpBL Plugin';
$description='Get out spammers of you gallery using Project Honey Pot (http:BL).';
$author='Mario Oyorzabal Salgado';
$version='0.1';
 
/*
* $extra_info is displayed with the title of a plugin that is NOT installed and
* can be used to present extra information. In this case I show a complex
* example that forms a button the user can click.
*/
$extra_info = <<<EOT
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="admin_menu"><a target="_blank" href="http://code.google.com/p/cpg-dnsbl/" title="Home">Website</a></td>
<td class="admin_menu"><a target="_blank" href="http://tinyurl.com/36mzoa" title="Donate">Donate</a></td>
<td class="admin_menu"><a target="_blank" href="http://www.projecthoneypot.org/?rf=39586" title="Project Honey Pot">Project Honey Pot</a></td>
</tr>
</table>
EOT;
 
/*
* $install_info is displayed with the title of a plugin that IS installed and
* can be used to present extra information. In this case I show a complex
* example that forms a button the user can click.
*/
$install_info=<<<EOT
    <table border="0" cellspacing="0" cellpadding="0">
    <tr>
        <td class="admin_menu"><a target="_blank" href="http://code.google.com/p/cpg-dnsbl/" title="Home">Website</a></td>
        <td class="admin_menu"><a target="_blank" href="http://tinyurl.com/36mzoa" title="Donate">Donate</a></td>
        <td class="admin_menu"><a target="_blank" href="http://www.projecthoneypot.org/?rf=39586" title="Project Honey Pot">Project Honey Pot</a></td>
    </tr>
    </table>
EOT;
 
?>