wordfence
Last commit date
css
14 years ago
images
14 years ago
js
14 years ago
lib
14 years ago
.htaccess
14 years ago
readme.txt
14 years ago
screenshot-1.png
14 years ago
screenshot-2.png
14 years ago
screenshot-3.png
14 years ago
screenshot-4.png
14 years ago
screenshot-5.png
14 years ago
visitor.php
14 years ago
wfscan.php
14 years ago
wordfence.php
14 years ago
wordfence.php
20 lines
| 1 | <?php |
| 2 | /* |
| 3 | Plugin Name: Wordfence Security |
| 4 | Plugin URI: http://wordfence.com/ |
| 5 | Description: Wordfence Security - Anti-virus and Firewall security plugin for WordPress |
| 6 | Author: Mark Maunder |
| 7 | Version: 2.1.0 |
| 8 | Author URI: http://wordfence.com/ |
| 9 | */ |
| 10 | define('WORDFENCE_VERSION', '2.1.0'); |
| 11 | |
| 12 | require_once('lib/wordfenceConstants.php'); |
| 13 | require_once('lib/wordfenceClass.php'); |
| 14 | register_activation_hook(WP_PLUGIN_DIR . '/wordfence/wordfence.php', 'wordfence::installPlugin'); |
| 15 | register_deactivation_hook(WP_PLUGIN_DIR . '/wordfence/wordfence.php', 'wordfence::uninstallPlugin'); |
| 16 | wordfence::install_actions(); |
| 17 | |
| 18 | |
| 19 | ?> |
| 20 |