You appear to be a bot. Output may be restricted
Description
bmc must not be blank
Usage
oik_diy_validate_bmc( $bmc );
Parameters
- $bmc
- ( mixed ) required –
Returns
voidSource
File name: oik-batchmove/admin/oik-batchmove-categories.phpLines:
1 to 11 of 11
function oik_diy_validate_bmc( $bmc ) { $valid = isset( $bmc ); if ( $valid ) { $bmc = trim( $bmc ); $valid = strlen( $bmc ) > 0; } if ( !$valid ) { p( "bmc must not be blank" ); } return $valid; }View on GitHub View on Trac