WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
This hook occurs 6 times in this file.
Line | Code |
---|---|
1044 | * 2. Before Maintenance Mode is enabled. |
1045 | * 3. Before WordPress begins copying over the necessary files. |
1046 | * 4. Before Maintenance Mode is disabled. |
1047 | * 5. Before the database is upgraded. |
1048 | * |
1049 | * @since 2.5.0 |
1050 | * |
1051 | * @param string $feedback The core update feedback messages. |
1052 | */ |
1053 | apply_filters( 'update_feedback', __( 'Verifying the unpacked files…' ) ); |
1054 |
|
1055 | // Confidence check the unzipped distribution. |
1056 | $distro = ''; |
1057 | $roots = array( '/wordpress/', '/wordpress-mu/' ); |
1058 |
|
1059 | foreach ( $roots as $root ) { |
1060 | if ( $wp_filesystem->exists( $from . $root . 'readme.html' ) |
1061 | && $wp_filesystem->exists( $from . $root . 'wp-includes/version.php' ) |
1062 | ) { |
Line | Code |
1186 | /* translators: 1: WordPress version number, 2: The PHP extension name needed. */ |
1187 | __( 'The update cannot be installed because WordPress %1$s requires the %2$s PHP extension.' ), |
1188 | $wp_version, |
1189 | 'JSON' |
1190 | ) |
1191 | ); |
1192 | } |
1193 |
|
1194 | /** This filter is documented in wp-admin/includes/update-core.php */ |
1195 | apply_filters( 'update_feedback', __( 'Preparing to install the latest version…' ) ); |
1196 |
|
1197 | /* |
1198 | * Don't copy wp-content, we'll deal with that below. |
1199 | * We also copy version.php last so failed updates report their old version. |
1200 | */ |
1201 | $skip = array( 'wp-content', 'wp-includes/version.php' ); |
1202 | $check_is_writable = array(); |
1203 |
|
1204 | // Check to see which files don't really need updating - only available for 3.7 and higher. |
Line | Code |
1270 | 'files_not_writable', |
1271 | __( 'The update cannot be installed because your site is unable to copy some files. This is usually due to inconsistent file permissions.' ), |
1272 | implode( ', ', $error_data ) |
1273 | ); |
1274 | } |
1275 | } |
1276 | } |
1277 |
|
1278 | /** This filter is documented in wp-admin/includes/update-core.php */ |
1279 | apply_filters( 'update_feedback', __( 'Enabling Maintenance mode…' ) ); |
1280 |
|
1281 | // Create maintenance file to signal that we are upgrading. |
1282 | $maintenance_string = '<?php $upgrading = ' . time() . '; ?>'; |
1283 | $maintenance_file = $to . '.maintenance'; |
1284 | $wp_filesystem->delete( $maintenance_file ); |
1285 | $wp_filesystem->put_contents( $maintenance_file, $maintenance_string, FS_CHMOD_FILE ); |
1286 |
|
1287 | /** This filter is documented in wp-admin/includes/update-core.php */ |
1288 | apply_filters( 'update_feedback', __( 'Copying the required files…' ) ); |
1289 |
|
1290 | // Copy new versions of WP files into place. |
1291 | $result = copy_dir( $from . $distro, $to, $skip ); |
1292 |
|
1293 | if ( is_wp_error( $result ) ) { |
1294 | $result = new WP_Error( |
1295 | $result->get_error_code(), |
1296 | $result->get_error_message(), |
1297 | substr( $result->get_error_data(), strlen( $to ) ) |
Line | Code |
1419 | $result->get_error_message(), |
1420 | substr( $result->get_error_data(), strlen( $wp_lang_dir ) ) |
1421 | ); |
1422 | } |
1423 | } |
1424 | } |
1425 | } |
1426 |
|
1427 | /** This filter is documented in wp-admin/includes/update-core.php */ |
1428 | apply_filters( 'update_feedback', __( 'Disabling Maintenance mode…' ) ); |
1429 |
|
1430 | // Remove maintenance file, we're done with potential site-breaking changes. |
1431 | $wp_filesystem->delete( $maintenance_file ); |
1432 |
|
1433 | /* |
1434 | * 3.5 -> 3.5+ - an empty twentytwelve directory was created upon upgrade to 3.5 for some users, |
1435 | * preventing installation of Twenty Twelve. |
1436 | */ |
1437 | if ( '3.5' === $old_wp_version ) { |
Line | Code |
1534 |
|
1535 | // Deactivate the REST API plugin if its version is 2.0 Beta 4 or lower. |
1536 | _upgrade_440_force_deactivate_incompatible_plugins(); |
1537 |
|
1538 | // Deactivate incompatible plugins. |
1539 | _upgrade_core_deactivate_incompatible_plugins(); |
1540 |
|
1541 | // Upgrade DB with separate request. |
1542 | /** This filter is documented in wp-admin/includes/update-core.php */ |
1543 | apply_filters( 'update_feedback', __( 'Upgrading database…' ) ); |
1544 |
|
1545 | $db_upgrade_url = admin_url( 'upgrade.php?step=upgrade_db' ); |
1546 | wp_remote_post( $db_upgrade_url, array( 'timeout' => 60 ) ); |
1547 |
|
1548 | // Clear the cache to prevent an update_option() from saving a stale db_version to the cache. |
1549 | wp_cache_flush(); |
1550 | // Not all cache back ends listen to 'flush'. |
1551 | wp_cache_delete( 'alloptions', 'options' ); |
1552 |
|