當前位置: 首頁>>代碼示例>>PHP>>正文


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怎麽用?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'));
     }
 }
開發者ID:developmentDM2,項目名稱:Whohaha,代碼行數:32,代碼來源:Generic_Plugin.php

示例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;
 }
開發者ID:eduardodomingos,項目名稱:eduardodomingos.com,代碼行數:35,代碼來源:Licensing_Plugin_Admin.php

示例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';
 }
開發者ID:developmentDM2,項目名稱:Whohaha,代碼行數:19,代碼來源:Util_Environment.php


注:本文中的Util_Environment::is_w3tc_pro_dev方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。