本文整理汇总了PHP中Util_Environment::is_w3tc_pro_dev方法的典型用法代码示例。如果您正苦于以下问题:PHP Util_Environment::is_w3tc_pro_dev方法的具体用法?PHP Util_Environment::is_w3tc_pro_dev怎么用?PHP Util_Environment::is_w3tc_pro_dev使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Util_Environment
的用法示例。
在下文中一共展示了Util_Environment::is_w3tc_pro_dev方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: run
/**
* Runs plugin
*/
function run()
{
add_filter('cron_schedules', array($this, 'cron_schedules'), 5);
add_action('init', array($this, 'init'), 1);
if (Util_Environment::is_w3tc_pro_dev() && Util_Environment::is_w3tc_pro($this->_config)) {
add_action('wp_footer', array($this, 'pro_dev_mode'));
}
add_action('admin_bar_menu', array($this, 'admin_bar_menu'), 150);
if (isset($_REQUEST['w3tc_theme']) && isset($_SERVER['HTTP_USER_AGENT']) && stristr($_SERVER['HTTP_USER_AGENT'], W3TC_POWERED_BY) !== false) {
add_filter('template', array($this, 'template_preview'));
add_filter('stylesheet', array($this, 'stylesheet_preview'));
} elseif ($this->_config->get_boolean('mobile.enabled') || $this->_config->get_boolean('referrer.enabled')) {
add_filter('template', array($this, 'template'));
add_filter('stylesheet', array($this, 'stylesheet'));
}
/**
* Create cookies to flag if a pgcache role was loggedin
*/
if (!$this->_config->get_boolean('pgcache.reject.logged') && $this->_config->get_array('pgcache.reject.logged_roles')) {
add_action('set_logged_in_cookie', array($this, 'check_login_action'), 0, 5);
add_action('clear_auth_cookie', array($this, 'check_login_action'), 0, 5);
}
if ($this->_config->get_string('common.support') == 'footer') {
add_action('wp_footer', array($this, 'footer'));
}
if ($this->can_ob()) {
ob_start(array($this, 'ob_callback'));
}
}
示例2: update_license_status
/**
*
*
* @return string
*/
function update_license_status()
{
$status = '';
$license_key = $this->get_license_key();
$old_plugin_type = $this->_config->get_string('plugin.type');
$plugin_type = '';
if (!empty($license_key) || defined('W3TC_LICENSE_CHECK')) {
$license = edd_w3edge_w3tc_check_license($license_key, W3TC_VERSION);
if ($license) {
$status = $license->license_status;
if ($this->_status_is($status, 'active')) {
$plugin_type = 'pro';
} elseif ($this->_status_is($status, 'inactive.by_rooturi') && Util_Environment::is_w3tc_pro_dev()) {
$status = 'valid';
$plugin_type = 'pro_dev';
}
}
$this->_config->set('plugin.type', $plugin_type);
} else {
$status = 'no_key';
}
if ($old_plugin_type != $plugin_type) {
try {
$this->_config->set('plugin.type', $plugin_type);
$this->_config->save();
} catch (\Exception $ex) {
}
}
return $status;
}
示例3: w3tc_edition
/**
*
*
* @var Config $config
* @return string
*/
public static function w3tc_edition($config = null)
{
if (Util_Environment::is_w3tc_enterprise($config)) {
return 'enterprise';
}
if (Util_Environment::is_w3tc_pro($config) && Util_Environment::is_w3tc_pro_dev()) {
return 'pro development';
}
if (Util_Environment::is_w3tc_pro($config)) {
return 'pro';
}
return 'community';
}