wordfence
Last commit date
css
14 years ago
images
14 years ago
js
14 years ago
lib
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
18 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.0.2 |
| 8 | Author URI: http://wordfence.com/ |
| 9 | */ |
| 10 | require_once('lib/wordfenceConstants.php'); |
| 11 | require_once('lib/wordfenceClass.php'); |
| 12 | register_activation_hook(WP_PLUGIN_DIR . '/wordfence/wordfence.php', 'wordfence::installPlugin'); |
| 13 | register_deactivation_hook(WP_PLUGIN_DIR . '/wordfence/wordfence.php', 'wordfence::uninstallPlugin'); |
| 14 | wordfence::install_actions(); |
| 15 | |
| 16 | |
| 17 | ?> |
| 18 |