Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: auto_update_{$type}

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
2507            * See the {@see 'allow_dev_auto_core_updates', {@see 'allow_minor_auto_core_updates'},
2508            * and {@see 'allow_major_auto_core_updates'} filters for a more straightforward way to
2509            * adjust core updates.
2510            *
2511            * @since 3.7.0
2512            *
2513            * @param bool   $update Whether to update.
2514            * @param object $item   The update offer.
2515            */
2516           $update = apply_filters( 'auto_update_' . $type, $update, $item );
2517
2518           if ( ! $update ) {
2519                if ( 'core' == $type )
2520                     $this->send_core_update_notification_email( $item );
2521                return false;
2522           }
2523
2524           // If it's a core update, are we actually compatible with its requirements?
2525           if ( 'core' == $type ) {