content-single-meeting.php
1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
/**
* The template for displaying product content in the single-meeting.php template
*
* This template can be overridden by copying it to yourtheme/video-conferencing-zoom/single-meetings.php.
*
* @author Deepen.
* @created_on 11/19/19
* @version 3.7.1
*/
defined( 'ABSPATH' ) || exit;
/**
* Hook: vczoom_before_single_meeting.
*/
do_action( 'vczoom_before_single_meeting' );
if ( post_password_required() ) {
echo get_the_password_form(); // WPCS: XSS ok.
return;
}
/**
* Hook: vczoom_before_content
*/
do_action( 'vczoom_before_content' );
?>
<div class="vczapi-wrap dpn-zvc-single-content-wrapper dpn-zvc-single-content-wrapper-<?php echo get_the_id(); ?>" id="dpn-zvc-single-content-wrapper-<?php echo get_the_id(); ?>">
<div class="vczapi-col-8">
<?php
/**
* Hook: vczoom_single_content_left
*
* @video_conference_zoom_featured_image - 10
* @video_conference_zoom_main_content - 20
*/
do_action( 'vczoom_single_content_left' );
?>
</div>
<div class="vczapi-col-4">
<div class="dpn-zvc-sidebar-wrapper">
<?php
/**
* Hook: vczoom_single_content_right
*
* @video_conference_zoom_countdown_timer - 10
* @video_conference_zoom_meeting_details - 20
* @video_conference_zoom_meeting_join - 30
*
*/
do_action( 'vczoom_single_content_right' );
?>
</div>
</div>
<div class="clearfix"></div>
</div>
<?php
/**
* Hook: vczoom_after_content
*/
do_action( 'vczoom_after_content' );
/**
* Hook: video_conference_zoom_before_single_meeting.
*/
do_action( 'video_conference_zoom_after_single_meeting' );
?>