| 1 |
<?php |
| 2 |
// @codingStandardsIgnoreFile |
| 3 |
if(!defined('WPINC')) // MUST have WordPress. |
| 4 |
exit("Do not access this file directly."); |
| 5 |
?> |
| 6 |
|
| 7 |
<div id="%%player_id%%" class="s2member-jwplayer-v6"></div> |
| 8 |
<script type="text/javascript" src="%%player_path%%"></script> |
| 9 |
<script type="text/javascript"> |
| 10 |
if(typeof jwplayer.key !== 'string' || !jwplayer.key) |
| 11 |
jwplayer.key = '%%player_key%%'; |
| 12 |
|
| 13 |
jwplayer('%%player_id%%').setup |
| 14 |
({ |
| 15 |
playlist: |
| 16 |
[{ |
| 17 |
title: '%%player_title%%', |
| 18 |
image: '%%player_image%%', |
| 19 |
|
| 20 |
mediaid: '%%player_mediaid%%', |
| 21 |
description: '%%player_description%%', |
| 22 |
|
| 23 |
captions: %%player_captions%%, |
| 24 |
|
| 25 |
sources: %%player_sources%% |
| 26 |
}], |
| 27 |
|
| 28 |
controls: %%player_controls%%, |
| 29 |
skin: '%%player_skin%%', |
| 30 |
stretching: '%%player_stretching%%', |
| 31 |
width: %%player_width%%, |
| 32 |
height: %%player_height%%, |
| 33 |
aspectratio: '%%player_aspectratio%%', |
| 34 |
|
| 35 |
autostart: %%player_autostart%%, |
| 36 |
fallback: %%player_fallback%%, |
| 37 |
mute: %%player_mute%%, |
| 38 |
primary: '%%player_primary%%', |
| 39 |
repeat: %%player_repeat%%, |
| 40 |
startparam: '%%player_startparam%%', |
| 41 |
|
| 42 |
%%player_option_blocks%% |
| 43 |
}); |
| 44 |
</script> |
| 45 |
|