wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



__checked_selected_helper › WordPress Function

Depuis2.8.0
Dépréciéen/a
__checked_selected_helper ( $helper, $current, $display, $type )
Accès:
  • private
Paramètres: (4)
  • (mixed) $helper One of the values to compare.
    Requis: Oui
  • (mixed) $current The other value to compare if not just true.
    Requis: Oui
  • (bool) $display Whether to echo or just return the string.
    Requis: Oui
  • (string) $type The type of checked|selected|disabled|readonly we are doing.
    Requis: Oui
Retourne:
  • (string) HTML attribute or empty string.
Défini(e) dans:
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;
}