wpseek.com
A WordPress-centric search engine for devs and theme authors



__checked_selected_helper › WordPress Function

Since2.8.0
Deprecatedn/a
__checked_selected_helper ( $helper, $current, $display, $type )
Access:
  • private
Parameters: (4)
  • (mixed) $helper One of the values to compare.
    Required: Yes
  • (mixed) $current The other value to compare if not just true.
    Required: Yes
  • (bool) $display Whether to echo or just return the string.
    Required: Yes
  • (string) $type The type of checked|selected|disabled|readonly we are doing.
    Required: Yes
Returns:
  • (string) HTML attribute or empty string.
Defined at:
Codex:

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

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


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