Changeset 59787
- Timestamp:
- 02/08/2025 03:09:41 PM (9 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/option.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/option.php
r59735 r59787 1293 1293 * @access private 1294 1294 * 1295 * @param string $optionThe name of the option.1296 * @param mixed $value The value of the option to check its autoload value.1297 * @param mixed $serialized_value The serialized value of the option to check its autoload value.1298 * @param bool|null $autoload The autoload value to check.1299 * Accepts 'on'|true to enable or 'off'|false to disable, or1300 * 'auto-on', 'auto-off', or 'auto' for internal purposes.1301 * Any other autoload value will be forced to either 'auto-on',1302 * 'auto-off', or 'auto'.1303 * 'yes' and 'no' are supported for backward compatibility.1295 * @param string $option The name of the option. 1296 * @param mixed $value The value of the option to check its autoload value. 1297 * @param mixed $serialized_value The serialized value of the option to check its autoload value. 1298 * @param bool|null $autoload The autoload value to check. 1299 * Accepts 'on'|true to enable or 'off'|false to disable, or 1300 * 'auto-on', 'auto-off', or 'auto' for internal purposes. 1301 * Any other autoload value will be forced to either 'auto-on', 1302 * 'auto-off', or 'auto'. 1303 * 'yes' and 'no' are supported for backward compatibility. 1304 1304 * @return string Returns the original $autoload value if explicit, or 'auto-on', 'auto-off', 1305 1305 * or 'auto' depending on default heuristics.
Note: See TracChangeset
for help on using the changeset viewer.