Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: pre_auto_update

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
2884            * Fires immediately prior to an auto-update.
2885            *
2886            * @since 4.4.0
2887            *
2888            * @param string $type    The type of update being checked: 'core', 'theme', 'plugin', or 'translation'.
2889            * @param object $item    The update offer.
2890            * @param string $context The filesystem context (a path) against which filesystem access and status
2891            *                        should be checked.
2892            */
2893           do_action( 'pre_auto_update', $type, $item, $context );
2894
2895           $upgrader_item = $item;
2896           switch ( $type ) {
2897                case 'core':
2898                     $skin->feedback( __( 'Updating to WordPress %s' ), $item->version );
2899                     $item_name = sprintf( __( 'WordPress %s' ), $item->version );
2900                     break;
2901                case 'theme':
2902                     $upgrader_item = $item->theme;