Description
Private helper function for checked, selected, disabled and readonly.
Compares the first two arguments and if identical marks as $type
Usage
$string = __checked_selected_helper( $helper, $current, $echo, $type );
Parameters
- $helper
- ( mixed ) required – One of the values to compare
- $current
- ( mixed ) required – (true) The other value to compare if not just true
- $echo
- ( bool ) required – Whether to echo or just return the string
- $type
- ( string ) required – The type of checked|selected|disabled|readonly we are doing
Returns
string html attribute or empty string
Source
File name: wordpress/wp-includes/general-template.php
Lines: 1 to 11 of 11
function __checked_selected_helper( $helper, $current, $echo, $type ) { if ( (string) $helper === (string) $current ) $result = " $type='$type'"; else $result = ''; if ( $echo ) echo $result; return $result; }