source: extensions/Shadogo/trunk/template/video_content.tpl @ 10016

Last change on this file since 10016 was 10016, checked in by binaryworld, 13 years ago
File size: 527 bytes
Line 
1<div id="shadogo_mediaplayer">
2{if $MEDIA == 'swf'}
3        <object
4                id='ps-player'
5                name='ps-player'
6                type = 'application/x-shockwave-flash'
7                width='{$VIDEO_WIDTH}'
8                height='{$VIDEO_HEIGHT}'
9                data = '{$VIDEO_URL}'>
10                <param name='allowfullscreen' value='true'>
11        </object>
12{else}
13        <embed
14                id='ps-player'
15                name='ps-player'
16                width='{$VIDEO_WIDTH}'
17                height='{$VIDEO_HEIGHT}'
18                src='{$U_PLAYER}'
19                allowscriptaccess='always'
20                allowfullscreen='true'
21                flashvars='{eval var=$FLASH_VARS}'
22        />
23{/if}
24</div>
Note: See TracBrowser for help on using the repository browser.