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