WP_Site_Health_Auto_Updates::test_filters_automatic_updater_disabled()publicWP 5.2.0

Checks if automatic updates are disabled by a filter.

Method of the class: WP_Site_Health_Auto_Updates{}

Hooks from the method

Return

Array. The test results.

Usage

$WP_Site_Health_Auto_Updates = new WP_Site_Health_Auto_Updates();
$WP_Site_Health_Auto_Updates->test_filters_automatic_updater_disabled();

Changelog

Since 5.2.0 Introduced.

WP_Site_Health_Auto_Updates::test_filters_automatic_updater_disabled() code WP 6.4.3

public function test_filters_automatic_updater_disabled() {
	/** This filter is documented in wp-admin/includes/class-wp-automatic-updater.php */
	if ( apply_filters( 'automatic_updater_disabled', false ) ) {
		return array(
			'description' => sprintf(
				/* translators: %s: Name of the filter used. */
				__( 'The %s filter is enabled.' ),
				'<code>automatic_updater_disabled</code>'
			),
			'severity'    => 'fail',
		);
	}
}