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
459            * Returning a truthy value, or one that could be evaluated as a WP_Error
460            * will effectively short-circuit the installation, returning that value
461            * instead.
462            *
463            * @since 2.8.0
464            *
465            * @param bool|WP_Error $response   Response.
466            * @param array         $hook_extra Extra arguments passed to hooked filters.
467            */
468           $res = apply_filters( 'upgrader_pre_install', true, $args['hook_extra'] );
469
470           if ( is_wp_error( $res ) ) {
471                return $res;
472           }
473
474           //Retain the Original source and destinations
475           $remote_source = $args['source'];
476           $local_destination = $destination;
477