File manager - Edit - /home/theblueo/questionnaire/wp-content/plugins/sfwd-lms/assets/js/learndash_video_script.js
Back
/** LearnDash Lesson/Topic Video handler * Used when a Lesson or Topic contains an embed video ans allows */ if ( typeof learndash_video_data !== 'undefined' ) { if (typeof learndash_video_data.video_debug === 'undefined') { learndash_video_data.video_debug = '1'; } if (learndash_video_data.video_debug === '1') { console.log('learndash_video_data[%o]', learndash_video_data); } var ld_video_count = 0; var ld_video_players = {}; if ( learndash_video_data.videos_found_provider == 'youtube' ) { if (typeof Vimeo === 'undefined') { if (learndash_video_data.video_debug === '1') { console.log('YOUTUBE: YT element not found'); } } else { if (learndash_video_data.video_debug === '1') { console.log('YOUTUBE: YT element found'); } } // We ensure the iframe elements have the needed ID attribute before calling onYouTubeIframeAPIReady jQuery('.ld-video iframe').each( function(index, element) { ld_video_count += 1; var element_id = jQuery(element).prop('id'); if ( ( typeof element_id === 'undefined' ) || ( element_id == '' ) ) { element_id = 'ld-video-player-'+ld_video_count; jQuery(element).prop('id', element_id); } }); function onYouTubeIframeAPIReady() { jQuery('.ld-video iframe').each( function(index, element) { var element_id = jQuery(element).prop('id'); if ( typeof element_id !== 'undefined' ) { if (learndash_video_data.video_debug === '1') { console.log('YOUTUBE: calling LearnDash_disable_assets(true)'); } LearnDash_disable_assets(true); ld_video_players[element_id] = new YT.Player( element_id, { events: { 'onReady': LearnDash_YT_onPlayerReady, 'onStateChange': LearnDash_YT_onPlayerStateChange } }); } }); } function LearnDash_YT_onPlayerReady(event) { if (learndash_video_data.video_debug === '1') { console.log('YOUTUBE: in LearnDash_YT_onPlayerReady'); } if (learndash_video_data.videos_auto_start == true) { if (learndash_video_data.video_debug === '1') { console.log('YOUTUBE: calling playVideo()'); } event.target.playVideo(); } } function LearnDash_YT_onPlayerStateChange(event) { var player_state = event.target.getPlayerState(); if (learndash_video_data.video_debug === '1') { console.log('YOUTUBE: player_state[%o]', player_state); } if (player_state == YT.PlayerState.UNSTARTED ) { //console.log('Video has not started'); if (learndash_video_data.video_debug === '1') { console.log('YOUTUBE: Video has not started[%o]', player_state); } //jQuery('#player-status').html('Video has not started'); } else if (player_state == YT.PlayerState.ENDED) { //console.log('Video stopped'); if (learndash_video_data.video_debug === '1') { console.log('YOUTUBE: Video has ended[%o]', player_state); } //jQuery('#player-status').html('Video has ended'); // When the video ends we re-enable the form button if (learndash_video_data.video_debug === '1') { console.log('YOUTUBE: calling LearnDash_disable_assets(false)'); } LearnDash_disable_assets(false); } //else if (player_state == YT.PlayerState.PLAYING) { //console.log('Video is playing'); //jQuery('#player-status').html('Video is playing'); //} else if (player_state == YT.PlayerState.PAUSED) { //console.log('Video is paused'); //jQuery('#player-status').html('Video is paused'); //} else if (player_state == YT.PlayerState.BUFFERING) { //console.log('Video is buffering'); //jQuery('#player-status').html('Video is buffering'); //} else if (player_state == YT.PlayerState.CUED) { //console.log('Video is queued'); //jQuery('#player-status').html('Video is queued'); //} } } else if ( learndash_video_data.videos_found_provider == 'vimeo' ) { jQuery( document ).ready(function() { if (learndash_video_data.video_debug === '1') { console.log('VIMEO: init'); } if (typeof Vimeo === 'undefined') { if (learndash_video_data.video_debug === '1') { console.log('VIMEO: Error: Vimeo element not found. This is need for the video API.'); } } else { if (learndash_video_data.video_debug === '1') { console.log('VIMEO: Vimeo element found'); } } jQuery('.ld-video iframe').each( function(index, element) { ld_video_count += 1; var element_id = jQuery(element).prop('id'); if ( ( typeof element_id === 'undefined' ) || ( element_id == '' ) ) { jQuery(element).prop('id', 'ld-video-player-'+ld_video_count); element_id = 'ld-video-player-'+ld_video_count; } if ( typeof element_id !== 'undefined' ) { if (learndash_video_data.video_debug === '1') { console.log('VIMEO: element[%o]', element); } ld_video_players[element_id] = new Vimeo.Player(element); if ( typeof ld_video_players[element_id] !== 'undefined' ) { //console.log('player[%o]', ld_video_players[element_id]); if (learndash_video_data.video_debug === '1') { console.log('VIMEO: player[%o]', ld_video_players[element_id]); } ld_video_players[element_id].ready().then(function() { if (learndash_video_data.video_debug === '1') { console.log('VIMEO: ready video!'); } if (learndash_video_data.video_debug === '1') { console.log('VIMEO: calling LearnDash_disable_assets(true)'); } LearnDash_disable_assets(true); if (learndash_video_data.videos_auto_start == true) { if (learndash_video_data.video_debug === '1') { console.log('VIMEO: auto_start enabled.'); console.log('VIMEO: calling video play()'); } ld_video_players[element_id].play(); } else { if (learndash_video_data.video_debug === '1') { console.log('VIMEO: auto_start not enabled.'); } } }); //ld_video_players[element_id].on('play', function(something) { //console.log('something[%o]', something); //console.log('playing the video!'); //jQuery('#player-status').html('Video is playing'); //}); //ld_video_players[element_id].on('pause', function(something) { // console.log('something[%o]', something); // console.log('paused the video!'); // //jQuery('#player-status').html('Video is paused'); //}); ld_video_players[element_id].on('ended', function(something) { if (learndash_video_data.video_debug === '1') { console.log('VIMEO: calling LearnDash_disable_assets(false)'); } LearnDash_disable_assets(false); }); //ld_video_players[element_id].on('seeked', function( something ) { // console.log('something[%o]', something); // console.log('seeked the video!'); //jQuery('#player-status').html('Video has seeked'); //}); //player.getVideoTitle().then(function(title) { // console.log('title:', title); //}); } else { if (learndash_video_data.video_debug === '1') { console.log('VIMEO: player undefined'); } console.log('player undefined'); } } }); }); } else if ( learndash_video_data.videos_found_provider == 'wistia' ) { if (learndash_video_data.video_debug === '1') { console.log('WISTIA: init'); } window._wq = window._wq || []; _wq.push({ id: "_all", onReady: function(video) { if (learndash_video_data.video_debug === '1') { console.log('WISTIA: in onReady video[%o]', video); } video.bind('ready', function() { if (learndash_video_data.video_debug === '1') { console.log('WISTIA: video is ready'); } }); video.bind('play', function() { if (learndash_video_data.video_debug === '1') { console.log('WISTIA: video started'); } }); video.bind('end', function() { if (learndash_video_data.video_debug === '1') { console.log('WISTIA: video ended'); } if (learndash_video_data.video_debug === '1') { console.log('WISTIA: calling LearnDash_disable_assets(false)'); } LearnDash_disable_assets(false); return video.unbind; }); if (learndash_video_data.videos_auto_start == true) { if (learndash_video_data.video_debug === '1') { console.log('WISTIA: calling video.play()'); } video.play(); } if (learndash_video_data.video_debug === '1') { console.log('WISTIA: calling LearnDash_disable_assets(true)'); } LearnDash_disable_assets(true); }}); } else if (learndash_video_data.videos_found_provider == 'vooplayer') { //console.log('in vooplayer'); if (learndash_video_data.video_debug === '1') { console.log('VOOPLAYER: init'); } if (typeof vooAPI !== 'undefined') { if (learndash_video_data.video_debug === '1') { console.log('VOOPLAYER: calling LearnDash_disable_assets(true)'); } LearnDash_disable_assets(true); document.addEventListener('vooPlayerReady', LD_vooPlayerReady, false); function LD_vooPlayerReady(event) { if (learndash_video_data.video_debug === '1') { console.log('VOOPLAYER: vooPlayerReady [%o]', event); } // See https://app.vooplayer.com/docs/api/#vooPlayerReady for event examples. if ((typeof event.detail.video !== 'undefined') && (event.detail.video.length > 0 ) ) { vooAPI(event.detail.video, 'onEnded', null, onVideoEnded); } } function onVideoEnded() { if (learndash_video_data.video_debug === '1') { console.log('VOOPLAYER: calling LearnDash_disable_assets(false)'); } LearnDash_disable_assets(false); } } } else if ( learndash_video_data.videos_found_provider == 'local' ) { if (learndash_video_data.video_debug === '1') { console.log('LOCAL: init'); } jQuery( document ).ready(function() { //console.log('learndash_video_data[%o]', learndash_video_data.videos_found_provider); jQuery('.ld-video video').each( function(index, element) { ld_video_count += 1; var element_id = jQuery(element).prop('id'); if ( ( typeof element_id === 'undefined' ) || ( element_id == '' ) ) { jQuery(element).prop('id', 'ld-video-player-'+ld_video_count); element_id = 'ld-video-player-'+ld_video_count; } if ( typeof element_id !== 'undefined' ) { //console.log('element[%o]', element); ld_video_players[element_id] = element; if (learndash_video_data.video_debug === '1') { console.log('LOCAL: calling LearnDash_disable_assets(true)'); } LearnDash_disable_assets(true); if (learndash_video_data.videos_auto_start == true) { if (learndash_video_data.video_debug === '1') { console.log('LOCAL: playing video'); } ld_video_players[element_id].play(); } ld_video_players[element_id].onended = function(e) { if (learndash_video_data.video_debug === '1') { console.log('LOCAL: video ended'); } if (learndash_video_data.video_debug === '1') { console.log('LOCAL: calling LearnDash_disable_assets(false)'); } LearnDash_disable_assets( false ); }; } }); }); } } function LearnDash_disable_assets( status ) { if ( jQuery('form.sfwd-mark-complete input.learndash_mark_complete_button').length ) { if ( learndash_video_data.videos_hide_complete_button == true ) { jQuery('form.sfwd-mark-complete input.learndash_mark_complete_button').hide(); } else { jQuery('form.sfwd-mark-complete input.learndash_mark_complete_button').attr('disabled', status ); } // If we enabled the button 'status' is false and auto-complete is true then submit the form. if ( learndash_video_data.videos_auto_complete == true ) { if ( status == false ) { var auto_complete_delay = parseInt( learndash_video_data.videos_auto_complete_delay ); //console.log('auto_complete_delay[%o]', auto_complete_delay); if ( auto_complete_delay > 0 ) { if ( learndash_video_data.videos_auto_complete_delay_message != '' ) { var timer_html = jQuery( learndash_video_data.videos_auto_complete_delay_message ).insertAfter( 'form.sfwd-mark-complete input.learndash_mark_complete_button' ); } var counter = auto_complete_delay; timer_id = setInterval(function() { counter--; if( counter < 1 ) { clearInterval( timer_id ); //if ( typeof timer_html !== 'undefined' ) { // jQuery('span', timer_html).html('XXX'); //} jQuery('form.sfwd-mark-complete')[0].submit(); } else { if ( typeof timer_html !== 'undefined' ) { jQuery('span', timer_html).html(counter); } } }, 1000); } else { jQuery('form.sfwd-mark-complete')[0].submit(); } } } } if (learndash_video_data.videos_shown == 'BEFORE' ) { if ( status == true ) { jQuery('#learndash_lesson_topics_list').hide(); jQuery('#learndash_quizzes').hide(); } else { jQuery('#learndash_lesson_topics_list').slideDown(); jQuery('#learndash_quizzes').slideDown(); } } jQuery(document).trigger( 'learndash_video_disable_assets', [ status ] ); }
| ver. 1.4 |
Github
|
.
| PHP 7.0.33 | Generation time: 0.01 |
proxy
|
phpinfo
|
Settings