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
1763            *
1764            * See the filters allow_dev_auto_core_updates, allow_minor_auto_core_updates, and
1765            * allow_major_auto_core_updates more straightforward filters to adjust core updates.
1766            *
1767            * @since 3.7.0
1768            *
1769            * @param bool   $update Whether to update.
1770            * @param object $item   The update offer.
1771            */
1772           $update = apply_filters( 'auto_update_' . $type, $update, $item );
1773
1774           if ( ! $update ) {
1775                if ( 'core' == $type )
1776                     $this->send_core_update_notification_email( $item );
1777                return false;
1778           }
1779
1780           // If it's a core update, are we actually compatible with its requirements?
1781           if ( 'core' == $type ) {