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