You appear to be a bot. Output may be restricted
Description
Embeds the video using iframeNote: the parameter for frameborder is enclosed in quotes so that it does get added to the parms
Usage
bw_movie( $url, $width, $height );
Parameters
- $url
- ( string ) required – the full URL expected to be using the correct protocol
- $width
- ( string ) required –
- $height
- ( string ) required –
Returns
voidSource
File name: oik-video/oik-video.incLines:
1 to 11 of 11
function bw_movie( $url, $width, $height ) { $kvwh = kv( "width", $width ); $kvwh .= kv( "height", $height ); $parms = $kvwh; $parms .= kv( "type", "text/html" ); $parms .= kv( "src", $url ); $parms .= kv( "frameborder", "0" ); stag( "iframe", "youtube-player bw_video_inner", null, $parms ); etag( "iframe" ); }