Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: update_feedback

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

This hook occurs 6 times in this file.

Line Code
907       * 2. Before Maintenance Mode is enabled.
908       * 3. Before WordPress begins copying over the necessary files.
909       * 4. Before Maintenance Mode is disabled.
910       * 5. Before the database is upgraded.
911       *
912       * @since 2.5.0
913       *
914       * @param string $feedback The core update feedback messages.
915       */
916      apply_filters( 'update_feedback', __( 'Verifying the unpacked files…' ) );
917
918      // Sanity check the unzipped distribution.
919      $distro = '';
920      $roots  = array( '/wordpress/', '/wordpress-mu/' );
921      foreach ( $roots as $root ) {
922           if ( $wp_filesystem->exists( $from . $root . 'readme.html' ) && $wp_filesystem->exists( $from . $root . 'wp-includes/version.php' ) ) {
923                $distro = $root;
924                break;
925           }
 
Line Code
1023                     /* translators: 1: WordPress version number, 2: The PHP extension name needed. */
1024                     __( 'The update cannot be installed because WordPress %1$s requires the %2$s PHP extension.' ),
1025                     $wp_version,
1026                     'JSON'
1027                )
1028           );
1029      }
1030
1031      /** This filter is documented in wp-admin/includes/update-core.php */
1032      apply_filters( 'update_feedback', __( 'Preparing to install the latest version…' ) );
1033
1034      // Don't copy wp-content, we'll deal with that below.
1035      // We also copy version.php last so failed updates report their old version.
1036      $skip              = array( 'wp-content', 'wp-includes/version.php' );
1037      $check_is_writable = array();
1038
1039      // Check to see which files don't really need updating - only available for 3.7 and higher.
1040      if ( function_exists( 'get_core_checksums' ) ) {
1041           // Find the local version of the working directory.
 
Line Code
1085                $error_data = version_compare( $old_wp_version, '3.7-beta2', '>' ) ? array_keys( $files_not_writable ) : '';
1086
1087                if ( $files_not_writable ) {
1088                     return new WP_Error( 'files_not_writable', __( 'The update cannot be installed because we will be unable to copy some files. This is usually due to inconsistent file permissions.' ), implode( ', ', $error_data ) );
1089                }
1090           }
1091      }
1092
1093      /** This filter is documented in wp-admin/includes/update-core.php */
1094      apply_filters( 'update_feedback', __( 'Enabling Maintenance mode…' ) );
1095      // Create maintenance file to signal that we are upgrading.
1096      $maintenance_string = '<?php $upgrading = ' . time() . '; ?>';
1097      $maintenance_file   = $to . '.maintenance';
1098      $wp_filesystem->delete( $maintenance_file );
1099      $wp_filesystem->put_contents( $maintenance_file, $maintenance_string, FS_CHMOD_FILE );
1100
1101      /** This filter is documented in wp-admin/includes/update-core.php */
1102      apply_filters( 'update_feedback', __( 'Copying the required files&#8230;' ) );
1103      // Copy new versions of WP files into place.
1104      $result = _copy_dir( $from . $distro, $to, $skip );
1105      if ( is_wp_error( $result ) ) {
1106           $result = new WP_Error( $result->get_error_code(), $result->get_error_message(), substr( $result->get_error_data(), strlen( $to ) ) );
1107      }
1108
1109      // Since we know the core files have copied over, we can now copy the version file.
1110      if ( ! is_wp_error( $result ) ) {
1111           if ( ! $wp_filesystem->copy( $from . $distro . 'wp-includes/version.php', $to . 'wp-includes/version.php', true /* overwrite */ ) ) {
 
Line Code
1182                     $result = copy_dir( $from . $distro . 'wp-content/languages/', $wp_lang_dir );
1183                     if ( is_wp_error( $result ) ) {
1184                          $result = new WP_Error( $result->get_error_code() . '_languages', $result->get_error_message(), substr( $result->get_error_data(), strlen( $wp_lang_dir ) ) );
1185                     }
1186                }
1187           }
1188      }
1189
1190      /** This filter is documented in wp-admin/includes/update-core.php */
1191      apply_filters( 'update_feedback', __( 'Disabling Maintenance mode&#8230;' ) );
1192      // Remove maintenance file, we're done with potential site-breaking changes.
1193      $wp_filesystem->delete( $maintenance_file );
1194
1195      // 3.5 -> 3.5+ - an empty twentytwelve directory was created upon upgrade to 3.5 for some users, preventing installation of Twenty Twelve.
1196      if ( '3.5' === $old_wp_version ) {
1197           if ( is_dir( WP_CONTENT_DIR . '/themes/twentytwelve' ) && ! file_exists( WP_CONTENT_DIR . '/themes/twentytwelve/style.css' ) ) {
1198                $wp_filesystem->delete( $wp_filesystem->wp_themes_dir() . 'twentytwelve/' );
1199           }
1200      }
 
Line Code
1276
1277      // Remove any Genericons example.html's from the filesystem.
1278      _upgrade_422_remove_genericons();
1279
1280      // Remove the REST API plugin if its version is Beta 4 or lower.
1281      _upgrade_440_force_deactivate_incompatible_plugins();
1282
1283      // Upgrade DB with separate request.
1284      /** This filter is documented in wp-admin/includes/update-core.php */
1285      apply_filters( 'update_feedback', __( 'Upgrading database&#8230;' ) );
1286      $db_upgrade_url = admin_url( 'upgrade.php?step=upgrade_db' );
1287      wp_remote_post( $db_upgrade_url, array( 'timeout' => 60 ) );
1288
1289      // Clear the cache to prevent an update_option() from saving a stale db_version to the cache.
1290      wp_cache_flush();
1291      // Not all cache back ends listen to 'flush'.
1292      wp_cache_delete( 'alloptions', 'options' );
1293
1294      // Remove working directory.