You appear to be a bot. Output may be restricted
Description
Displays video using the old methodbw_movie( "http://www.youtube.com/v/prRUji1K4yg&hl=en&fs=1"
- , 200
- , 200
- );
Usage
bw_movie_old( $url, $width, $height );
Parameters
- $url
- ( mixed ) required –
- $width
- ( mixed ) required –
- $height
- ( mixed ) required –
Returns
voidSource
File name: oik-video/oik-video.incLines:
1 to 18 of 18
function bw_movie_old( $url, $width, $height ) { //$url = urlencode( $url ); $kvwh = kv( "width", $width ); $kvwh .= kv( "height", $height ); stag( "object", null, null, $kvwh ); bw_param( "movie", $url ); bw_param( "allowFullScreen", "true" ); bw_param( "allowscriptaccess", "always" ); $parms = $kvwh; $parms .= kv( "allowFullScreen", "true" ); $parms .= kv( "allowscriptaccess", "always" ); $parms .= kv( "type", "application/x-shockwave-flash" ); $parms .= kv( "src", $url ); stag( "embed", null, null, $parms ); etag ("embed" ); etag( "object" ); }