当前位置: 首页>>代码示例>>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;未经允许,请勿转载。