本文整理汇总了PHP中wordfence::install_actions方法的典型用法代码示例。如果您正苦于以下问题:PHP wordfence::install_actions方法的具体用法?PHP wordfence::install_actions怎么用?PHP wordfence::install_actions使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类wordfence
的用法示例。
在下文中一共展示了wordfence::install_actions方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: define
/*
Plugin Name: Wordfence Security
Plugin URI: http://www.wordfence.com/
Description: Wordfence Security - Anti-virus, Firewall and High Speed Cache
Author: Wordfence
Version: 5.3.4
Author URI: http://www.wordfence.com/
*/
if (defined('WP_INSTALLING') && WP_INSTALLING) {
return;
}
define('WORDFENCE_VERSION', '5.3.4');
if (get_option('wordfenceActivated') != 1) {
add_action('activated_plugin', 'wordfence_save_activation_error');
function wordfence_save_activation_error()
{
update_option('wf_plugin_act_error', ob_get_contents());
}
}
if (!defined('WORDFENCE_VERSIONONLY_MODE')) {
//Used to get version from file.
if ((int) @ini_get('memory_limit') < 128) {
if (strpos(ini_get('disable_functions'), 'ini_set') === false) {
@ini_set('memory_limit', '128M');
//Some hosts have ini set at as little as 32 megs. 64 is the min sane amount of memory.
}
}
require_once 'lib/wordfenceConstants.php';
require_once 'lib/wordfenceClass.php';
wordfence::install_actions();
}