ld_visitor.php
4.68 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<?php
/**
* LearnDash `[visitor]` shortcode processing.
*
* @since 2.1.0
*
* @package LearnDash\Shortcodes
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Builds the `[visitor]` shortcode output.
*
* @global boolean $learndash_shortcode_used
*
* @since 2.1.0
*
* @param array $atts {
* An array of shortcode attributes.
*
* @type int $course_id Course ID. Default current course ID.
* @type string $content The shortcode content. Default empty
* @type boolean $autop Whether to replace line breaks with paragraph elements. Default true.
* }
* @param string $content The shortcode content. Default empty.
* @param string $shortcode_slug The shortcode slug. Default 'visitor'.
*
* @return string The `visitor` shortcode output.
*/
function learndash_visitor_check_shortcode( $atts = array(), $content = '', $shortcode_slug = 'visitor' ) {
global $learndash_shortcode_used;
if ( ! empty( $content ) ) {
if ( ! is_array( $atts ) ) {
if ( ! empty( $atts ) ) {
$atts = array( $atts );
} else {
$atts = array();
}
}
$defaults = array(
'course_id' => '',
'group_id' => '',
'user_id' => get_current_user_id(),
'content' => $content,
'autop' => true,
);
$atts = wp_parse_args( $atts, $defaults );
/** This filter is documented in includes/shortcodes/ld_course_resume.php */
$atts = apply_filters( 'learndash_shortcode_atts', $atts, $shortcode_slug );
if ( ( true === $atts['autop'] ) || ( 'true' === $atts['autop'] ) || ( '1' === $atts['autop'] ) ) {
$atts['autop'] = true;
} else {
$atts['autop'] = false;
}
if ( ! empty( $atts['course_id'] ) ) {
if ( learndash_get_post_type_slug( 'course' ) !== get_post_type( $atts['course_id'] ) ) {
$atts['course_id'] = 0;
}
}
if ( ! empty( $atts['group_id'] ) ) {
if ( learndash_get_post_type_slug( 'group' ) !== get_post_type( $atts['group_id'] ) ) {
$atts['group_id'] = 0;
}
}
if ( ( empty( $atts['course_id'] ) ) && ( empty( $atts['group_id'] ) ) ) {
$viewed_post_id = (int) get_the_ID();
if ( ! empty( $viewed_post_id ) ) {
if ( in_array( get_post_type( $viewed_post_id ), learndash_get_post_types( 'course' ), true ) ) {
$atts['course_id'] = learndash_get_course_id( $viewed_post_id );
} elseif ( get_post_type( $viewed_post_id ) === learndash_get_post_type_slug( 'group' ) ) {
$atts['group_id'] = $viewed_post_id;
}
}
}
/**
* Filters visitor shortcode attributes.
*
* @param array $atts An array of shortcode attributes.
*/
$atts = apply_filters( 'learndash_visitor_shortcode_atts', $atts );
$atts['user_id'] = absint( $atts['user_id'] );
$atts['group_id'] = absint( $atts['group_id'] );
$atts['course_id'] = absint( $atts['course_id'] );
$view_content = false;
if ( ( empty( $atts['user_id'] ) ) || ( get_current_user_id() === $atts['user_id'] ) ) {
if ( ! empty( $atts['course_id'] ) ) {
if ( get_current_user_id() ) {
if ( ! sfwd_lms_has_access( $atts['course_id'], $atts['user_id'] ) ) {
$view_content = true;
}
} else {
$view_content = true;
}
} elseif ( ! empty( $atts['group_id'] ) ) {
if ( get_current_user_id() ) {
if ( ! learndash_is_user_in_group( $atts['user_id'], $atts['group_id'] ) ) {
$view_content = true;
}
} else {
$view_content = true;
}
} else {
if ( get_current_user_id() ) {
$user_enrolled_courses = learndash_user_get_enrolled_courses( get_current_user_id(), array() );
$user_enrolled_groups = learndash_get_users_group_ids( get_current_user_id() );
// If the user is not enrolled in any courses or groups then we show the content.
if ( ( ! count( $user_enrolled_courses ) ) && ( ! count( $user_enrolled_groups ) ) ) {
$view_content = true;
}
} else {
$view_content = true;
}
}
}
/**
* Filters visitor shortcode if user can view content.
*
* @since 4.4.0
*
* @param bool $view_content Whether to view content.
* @param array $atts An array of shortcode attributes.
*/
$view_content = apply_filters( 'learndash_visitor_shortcode_view_content', $view_content, $atts );
if ( $view_content ) {
$learndash_shortcode_used = true;
$atts['content'] = do_shortcode( $atts['content'] );
$shortcode_out = SFWD_LMS::get_template(
'learndash_course_visitor_message',
array(
'shortcode_atts' => $atts,
),
false
);
if ( ! empty( $shortcode_out ) ) {
$content = '<div class="learndash-wrapper learndash-wrap learndash-shortcode-wrap">' . $shortcode_out . '</div>';
}
} else {
$content = '';
}
}
return $content;
}
add_shortcode( 'visitor', 'learndash_visitor_check_shortcode' );