当前位置: 首页>>代码示例>>PHP>>正文


PHP Jetpack::get_updates方法代码示例

本文整理汇总了PHP中Jetpack::get_updates方法的典型用法代码示例。如果您正苦于以下问题:PHP Jetpack::get_updates方法的具体用法?PHP Jetpack::get_updates怎么用?PHP Jetpack::get_updates使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Jetpack的用法示例。


在下文中一共展示了Jetpack::get_updates方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: test_sync_callable_whitelist

 public function test_sync_callable_whitelist()
 {
     // $this->setSyncClientDefaults();
     $callables = array('wp_max_upload_size' => wp_max_upload_size(), 'is_main_network' => Jetpack::is_multi_network(), 'is_multi_site' => is_multisite(), 'main_network_site' => Jetpack_Sync_Functions::main_network_site_url(), 'single_user_site' => Jetpack::is_single_user_site(), 'updates' => Jetpack::get_updates(), 'home_url' => Jetpack_Sync_Functions::home_url(), 'site_url' => Jetpack_Sync_Functions::site_url(), 'has_file_system_write_access' => Jetpack_Sync_Functions::file_system_write_access(), 'is_version_controlled' => Jetpack_Sync_Functions::is_version_controlled(), 'taxonomies' => Jetpack_Sync_Functions::get_taxonomies(), 'post_types' => Jetpack_Sync_Functions::get_post_types(), 'post_type_features' => Jetpack_Sync_Functions::get_post_type_features(), 'rest_api_allowed_post_types' => Jetpack_Sync_Functions::rest_api_allowed_post_types(), 'rest_api_allowed_public_metadata' => Jetpack_Sync_Functions::rest_api_allowed_public_metadata(), 'sso_is_two_step_required' => Jetpack_SSO_Helpers::is_two_step_required(), 'sso_should_hide_login_form' => Jetpack_SSO_Helpers::should_hide_login_form(), 'sso_match_by_email' => Jetpack_SSO_Helpers::match_by_email(), 'sso_new_user_override' => Jetpack_SSO_Helpers::new_user_override(), 'sso_bypass_default_login_form' => Jetpack_SSO_Helpers::bypass_login_forward_wpcom(), 'wp_version' => Jetpack_Sync_Functions::wp_version(), 'get_plugins' => Jetpack_Sync_Functions::get_plugins(), 'active_modules' => Jetpack::get_active_modules(), 'hosting_provider' => Jetpack_Sync_Functions::get_hosting_provider(), 'locale' => get_locale(), 'site_icon_url' => Jetpack_Sync_Functions::site_icon_url());
     if (is_multisite()) {
         $callables['network_name'] = Jetpack::network_name();
         $callables['network_allow_new_registrations'] = Jetpack::network_allow_new_registrations();
         $callables['network_add_new_users'] = Jetpack::network_add_new_users();
         $callables['network_site_upload_space'] = Jetpack::network_site_upload_space();
         $callables['network_upload_file_types'] = Jetpack::network_upload_file_types();
         $callables['network_enable_administration_menus'] = Jetpack::network_enable_administration_menus();
     }
     $this->sender->do_sync();
     foreach ($callables as $name => $value) {
         // TODO: figure out why _sometimes_ the 'support' value of
         // the post_types value is being removed from the output
         if ($name === 'post_types') {
             continue;
         }
         $this->assertCallableIsSynced($name, $value);
     }
     $whitelist_keys = array_keys($this->callable_module->get_callable_whitelist());
     $callables_keys = array_keys($callables);
     // Are we testing all the callables in the defaults?
     $whitelist_and_callable_keys_difference = array_diff($whitelist_keys, $callables_keys);
     $this->assertTrue(empty($whitelist_and_callable_keys_difference), 'Some whitelisted options don\'t have a test: ' . print_r($whitelist_and_callable_keys_difference, 1));
     // Are there any duplicate keys?
     $unique_whitelist = array_unique($whitelist_keys);
     $this->assertEquals(count($unique_whitelist), count($whitelist_keys), 'The duplicate keys are: ' . print_r(array_diff_key($whitelist_keys, array_unique($whitelist_keys)), 1));
 }
开发者ID:automattic,项目名称:jetpack,代码行数:30,代码来源:test_class.jetpack-sync-callables.php

示例2: refresh_update_data

 public static function refresh_update_data()
 {
     if (current_user_can('update_core') && current_user_can('update_plugins') && current_user_can('update_themes')) {
         /**
          * Fires whenever the amount of updates needed for a site changes.
          * Syncs an array that includes the number of theme, plugin, and core updates available, as well as the latest core version available.
          *
          * @since 3.7.0
          *
          * @param string jetpack_updates
          * @param array Update counts calculated by Jetpack::get_updates
          */
         do_action('add_option_jetpack_updates', 'jetpack_updates', Jetpack::get_updates());
     }
     /**
      * Fires whenever the amount of updates needed for a site changes.
      * Syncs an array of core, theme, and plugin data, and which of each is out of date
      *
      * @since 3.7.0
      *
      * @param string jetpack_update_details
      * @param array Update details calculated by Jetpack::get_update_details
      */
     do_action('add_option_jetpack_update_details', 'jetpack_update_details', Jetpack::get_update_details());
 }
开发者ID:jordankoschei,项目名称:jordankoschei-dot-com,代码行数:25,代码来源:class.jetpack.php

示例3: get_updates

 protected function get_updates()
 {
     return (array) Jetpack::get_updates();
 }
开发者ID:kanei,项目名称:vantuch.cz,代码行数:4,代码来源:class.json-api-site-jetpack.php


注:本文中的Jetpack::get_updates方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。