Summery Summery
Test if auto-updates related constants are set correctly.
Syntax Syntax
Parameters Parameters
- $constant
-
(Required) The name of the constant to check.
- $value
-
(Required) The value that the constant should be, if set.
Return Return
(array) The test results.
Source Source
File: wp-admin/includes/class-wp-site-health-auto-updates.php
* or an array of acceptable values.
* @return array The test results.
*/
public function test_constants( $constant, $value ) {
$acceptable_values = (array) $value;
if ( defined( $constant ) && ! in_array( constant( $constant ), $acceptable_values, true ) ) {
return array(
'description' => sprintf(
/* translators: %s: Name of the constant used. */
__( 'The %s constant is defined and enabled.' ),
"<code>$constant</code>"
Advertisement
Changelog Changelog
| Version | Description |
|---|---|
| 5.2.0 | Introduced. |