Outputs the HTML disabled attribute.
Description
Compares the first two arguments and if identical marks as disabled.
Parameters
$disabledmixedrequired- One of the values to compare.
$currentmixedoptional- The other value to compare if not just true.
Default:
true $displaybooloptional- Whether to echo or just return the string.
Default:
true
Source
function disabled( $disabled, $current = true, $display = true ) {
return __checked_selected_helper( $disabled, $current, $display, 'disabled' );
}
Changelog
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |
Enable/disable text field according to the given value.