__checked_selected_helper()WP 2.8.0

Private helper function for checked, selected, disabled and readonly.

Compares the first two arguments and if identical marks as $type.

Внутренняя функция — эта функция рассчитана на использование самим ядром. Не рекомендуется использовать эту функцию в своем коде.

No Hooks.

Return

String. HTML attribute or empty string.

Usage

__checked_selected_helper( $helper, $current, $display, $type ) // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionDoubleUnderscore,PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.FunctionDoubleUnderscore;
$helper(mixed) (required)
One of the values to compare.
$current(mixed) (required)
The other value to compare if not just true.
$display(true|false) (required)
Whether to echo or just return the string.
$type(string) (required)
The type of checked|selected|disabled|readonly we are doing.

Changelog

Since 2.8.0 Introduced.

__checked_selected_helper() code WP 6.4.1

function __checked_selected_helper( $helper, $current, $display, $type ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionDoubleUnderscore,PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.FunctionDoubleUnderscore
	if ( (string) $helper === (string) $current ) {
		$result = " $type='$type'";
	} else {
		$result = '';
	}

	if ( $display ) {
		echo $result;
	}

	return $result;
}