You appear to be a bot. Output may be restricted
Description
Display an input field checkbox which doesn't have a hidden field This means that only those which are selected are returned.
Usage
_oikbm_icheck( $name, $value );
Parameters
- $name
- ( string ) required – the name of the field e.g. batchmove[]
- $value
- ( string ) required – the value for the field e.g. 149
Returns
voidSource
File name: oik-batchmove/admin/oik-batchmove.phpLines:
1 to 8 of 8
function _oikbm_icheck( $name, $value ) { $it = "<input "; $it .= kv( "type", "checkbox" ); $it .= kv( "name", $name ); $it .= kv( "value", $value ); $it .= "/>"; return( $it ); }View on GitHub View on Trac