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 2 times in this file.

Line Code
161                          $try_rollback = true;
162                     elseif ( false !== strpos( $error_code, '__copy_dir' ) )
163                          $try_rollback = true;
164                     elseif ( 'disk_full' === $error_code )
165                          $try_rollback = true;
166                }
167
168                if ( $try_rollback ) {
169                     /** This filter is documented in wp-admin/includes/update-core.php */
170                     apply_filters( 'update_feedback', $result );
171
172                     /** This filter is documented in wp-admin/includes/update-core.php */
173                     apply_filters( 'update_feedback', $this->strings['start_rollback'] );
174
175                     $rollback_result = $this->upgrade( $current, array_merge( $parsed_args, array( 'do_rollback' => true ) ) );
176
177                     $original_result = $result;
178                     $result = new WP_Error( 'rollback_was_required', $this->strings['rollback_was_required'], (object) array( 'update' => $original_result, 'rollback' => $rollback_result ) );
179                }
180           }
181
182           /** This action is documented in wp-admin/includes/class-wp-upgrader.php */