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 2 times in this file.
| Line | Code |
|---|---|
| 1459 | $try_rollback = true; |
| 1460 | elseif ( false !== strpos( $error_code, '__copy_dir' ) ) |
| 1461 | $try_rollback = true; |
| 1462 | elseif ( 'disk_full' === $error_code ) |
| 1463 | $try_rollback = true; |
| 1464 | } |
| 1465 | |
| 1466 | if ( $try_rollback ) { |
| 1467 | /** This filter is documented in wp-admin/includes/update-core.php */ |
| 1468 | apply_filters( 'update_feedback', $result ); |
| 1469 | |
| 1470 | /** This filter is documented in wp-admin/includes/update-core.php */ |
| 1471 | apply_filters( 'update_feedback', $this->strings['start_rollback'] ); |
| 1472 | |
| 1473 | $rollback_result = $this->upgrade( $current, array_merge( $parsed_args, array( 'do_rollback' => true ) ) ); |
| 1474 | |
| 1475 | $original_result = $result; |
| 1476 | $result = new WP_Error( 'rollback_was_required', $this->strings['rollback_was_required'], (object) array( 'update' => $original_result, 'rollback' => $rollback_result ) ); |
| 1477 | } |
| 1478 | } |
| 1479 | |
| 1480 | /** This action is documented in wp-admin/includes/class-wp-upgrader.php */ |