PluginProbe
Tutor LMS – eLearning and online course solution / 3.7.2
Tutor LMS – eLearning and online course solution v3.7.2
4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 4.0.2 4.0.1 4.0.0 3.9.15 3.9.14 3.9.13 3.9.12 3.9.11 trunk 1.0.0 1.0.0-alpha 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 All 191 releases
tutor / templates / single / video / shortcode.php

shortcode.php in Tutor LMS – eLearning and online course solution 3.7.2, at templates/single/video/shortcode.php

28 lines 647 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Display shortcode
4 *
5 * @package Tutor\Templates
6 * @subpackage Single\Video
7 * @author Themeum <support@themeum.com>
8 * @link https://themeum.com
9 * @since 1.0.0
10 */
11
12 if ( ! defined( 'ABSPATH' ) ) {
13 exit;
14 }
15
16 $video_info = tutor_utils()->get_video_info();
17
18 do_action( 'tutor_lesson/single/before/video/shortcode' );
19 ?>
20 <div class="tutor-video-player">
21 <div class="loading-spinner" area-hidden="true"></div>
22 <div class="tutor-ratio tutor-ratio-16x9">
23 <?php echo do_shortcode( tutor_utils()->array_get( 'source_shortcode', $video_info ) ); ?>
24 </div>
25 </div>
26 <?php
27 do_action( 'tutor_lesson/single/after/video/shortcode' ); ?>
28