__checked_selected_helper( mixed $helper, mixed $current, bool $display, string $type ): string

This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

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

Description

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

Parameters

$helpermixedrequired
One of the values to compare.
$currentmixedrequired
The other value to compare if not just true.
$displayboolrequired
Whether to echo or just return the string.
$typestringrequired
The type of checked|selected|disabled|readonly we are doing.

Return

string HTML attribute or empty string.

Source

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;
}

Changelog

VersionDescription
2.8.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.