Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: upgrader_pre_install

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

Line Code
478            * Returning a truthy value, or one that could be evaluated as a WP_Error
479            * will effectively short-circuit the installation, returning that value
480            * instead.
481            *
482            * @since 2.8.0
483            *
484            * @param bool|WP_Error $response   Response.
485            * @param array         $hook_extra Extra arguments passed to hooked filters.
486            */
487           $res = apply_filters( 'upgrader_pre_install', true, $args['hook_extra'] );
488
489           if ( is_wp_error( $res ) ) {
490                return $res;
491           }
492
493           //Retain the Original source and destinations
494           $remote_source     = $args['source'];
495           $local_destination = $destination;
496