Upgrade/Install: Introduce wp_disallow_file_mods() helper function.

This is a wrapper around the checks for the `DISALLOW_FILE_MODS` constant to determine whether file modifications are disallowed.

Props MaximeCulea.
Fixes #38673.


git-svn-id: https://develop.svn.wordpress.org/trunk@40394 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Pascal Birchler
2017-04-07 14:35:39 +00:00
parent 49c68e7a9a
commit f44a9eba4e
5 changed files with 26 additions and 6 deletions
@@ -31,7 +31,7 @@ class WP_Automatic_Updater {
*/
public function is_disabled() {
// Background updates are disabled if you don't want file changes.
if ( defined( 'DISALLOW_FILE_MODS' ) && DISALLOW_FILE_MODS )
if ( wp_disallow_file_mods( 'automatic_updater' ) )
return true;
if ( wp_installing() )