Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: automatic_updater_disabled

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
2721            * There are more fine-grained filters and controls for selective disabling.
2722            * This filter parallels the AUTOMATIC_UPDATER_DISABLED constant in name.
2723            *
2724            * This also disables update notification emails. That may change in the future.
2725            *
2726            * @since 3.7.0
2727            *
2728            * @param bool $disabled Whether the updater should be disabled.
2729            */
2730           return apply_filters( 'automatic_updater_disabled', $disabled );
2731      }
2732
2733      /**
2734       * Check for version control checkouts.
2735       *
2736       * Checks for Subversion, Git, Mercurial, and Bazaar. It recursively looks up the
2737       * filesystem to the top of the drive, erring on the side of detecting a VCS
2738       * checkout somewhere.
2739       *