This repository has been archived by the owner on Apr 22, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configuration.php
58 lines (52 loc) · 2.61 KB
/
configuration.php
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
58
<?php
/*
******************************************************************************
CPG-BadBehavior Plugin
******************************************************************************
Author: Mario Oyorzabal Salgado
Blog: http://blog.tuxsoul.com/
E-mail: <[email protected]>
Web: http://code.google.com/p/cpg-dnsbl/
Donate: http://pledgie.org/campaigns/1537
******************************************************************************
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...');
include 'version.php';
$name = 'CPG-BadBehavior Plugin';
$description = 'Get out spammers of you gallery using project Bad-Behavior v' . CPG_BADBEHAVIOR_VERSION_CORE;
$author = 'Mario Oyorzabal Salgado';
$version = CPG_BADBEHAVIOR_VERSION;
/*
* $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://pledgie.org/campaigns/1537" title="Donate">Donate</a></td>
<td class="admin_menu"><a target="_blank" href="http://www.bad-behavior.ioerror.us/" title="Bad-Behavior">Bad-Behavior</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://pledgie.org/campaigns/1537" title="Donate">Donate</a></td>
<td class="admin_menu"><a target="_blank" href="http://www.bad-behavior.ioerror.us/" title="Bad-Behavior">Bad-Behavior</a></td>
</tr>
</table>
EOT;
?>