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


PHP WC_Install::background_updater方法代碼示例

本文整理匯總了PHP中WC_Install::background_updater方法的典型用法代碼示例。如果您正苦於以下問題:PHP WC_Install::background_updater方法的具體用法?PHP WC_Install::background_updater怎麽用?PHP WC_Install::background_updater使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在WC_Install的用法示例。


在下文中一共展示了WC_Install::background_updater方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: init

 /**
  * Hook in tabs.
  */
 public static function init()
 {
     add_action('init', array(__CLASS__, 'check_version'), 5);
     add_action('admin_init', array(__CLASS__, 'install_actions'));
     add_action('in_plugin_update_message-woocommerce/woocommerce.php', array(__CLASS__, 'in_plugin_update_message'));
     add_filter('plugin_action_links_' . WC_PLUGIN_BASENAME, array(__CLASS__, 'plugin_action_links'));
     add_filter('plugin_row_meta', array(__CLASS__, 'plugin_row_meta'), 10, 2);
     add_filter('wpmu_drop_tables', array(__CLASS__, 'wpmu_drop_tables'));
     add_filter('cron_schedules', array(__CLASS__, 'cron_schedules'));
     add_action('woocommerce_plugin_background_installer', array(__CLASS__, 'background_installer'), 10, 2);
     // Init background updates
     self::$background_updater = new WC_Background_Updater();
 }
開發者ID:seriusokhatsky,項目名稱:woocommerce,代碼行數:16,代碼來源:class-wc-install.php

示例2: init_background_updater

 /**
  * Init background updates
  */
 public static function init_background_updater()
 {
     include_once dirname(__FILE__) . '/class-wc-background-updater.php';
     self::$background_updater = new WC_Background_Updater();
 }
開發者ID:woocommerce,項目名稱:woocommerce,代碼行數:8,代碼來源:class-wc-install.php

示例3: init_background_updater

 /**
  * Init background updates
  */
 public static function init_background_updater()
 {
     include_once 'class-wc-background-updater.php';
     self::$background_updater = new WC_Background_Updater();
 }
開發者ID:jesusmarket,項目名稱:jesusmarket,代碼行數:8,代碼來源:class-wc-install.php


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