Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: send_core_update_notification_email

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
1822            * notified of the same new version, we won't repeatedly email the administrator.
1823            *
1824            * This filter is also used on about.php to check if a plugin has disabled these notifications.
1825            *
1826            * @since 3.7.0
1827            *
1828            * @param bool $notify Whether the site administrator is notified.
1829            * @param object $item The update offer.
1830            */
1831           if ( ! apply_filters( 'send_core_update_notification_email', $notify, $item ) )
1832                return false;
1833
1834           $this->send_email( 'manual', $item );
1835           return true;
1836      }
1837
1838      /**
1839       * Update an item, if appropriate.
1840       *