quizinfo.php
9.12 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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
<?php
/**
* LearnDash Shortcode Section for Quizinfo [quizinfo].
*
* @since 2.4.0
* @package LearnDash\Settings\Shortcodes
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ( class_exists( 'LearnDash_Shortcodes_Section' ) ) && ( ! class_exists( 'LearnDash_Shortcodes_Section_quizinfo' ) ) ) {
/**
* Class LearnDash Shortcode Section for Quizinfo [quizinfo].
*
* @since 2.4.0
*/
class LearnDash_Shortcodes_Section_quizinfo extends LearnDash_Shortcodes_Section /* phpcs:ignore PEAR.NamingConventions.ValidClassName.Invalid */ {
/**
* Public constructor for class.
*
* @since 2.4.0
*
* @param array $fields_args Field Args.
*/
public function __construct( $fields_args = array() ) {
$this->fields_args = $fields_args;
$this->shortcodes_section_key = 'quizinfo';
// translators: placeholder: Quiz.
$this->shortcodes_section_title = sprintf( esc_html_x( '%s Info', 'placeholder: Quiz', 'learndash' ), LearnDash_Custom_Label::get_label( 'quiz' ) );
$this->shortcodes_section_type = 1;
// translators: placeholder: quiz.
$this->shortcodes_section_description = sprintf( esc_html_x( 'This shortcode displays information regarding %s attempts on the certificate. This shortcode can use the following parameters:', 'placeholder: quiz', 'learndash' ), learndash_get_custom_label_lower( 'quiz' ) );
parent::__construct();
}
/**
* Initialize the shortcode fields.
*
* @since 2.4.0
*/
public function init_shortcodes_section_fields() {
$this->shortcodes_option_fields = array(
'show' => array(
'id' => $this->shortcodes_section_key . '_show',
'name' => 'show',
'type' => 'select',
'label' => esc_html__( 'Show', 'learndash' ),
'value' => 'quiz_title',
'options' => array(
'quiz_title' => sprintf(
// translators: placeholder: Quiz.
esc_html_x( '%s Title', 'placeholder: Quiz', 'learndash' ),
LearnDash_Custom_Label::get_label( 'quiz' )
),
'score' => esc_html__( 'Score', 'learndash' ),
'count' => esc_html__( 'Count', 'learndash' ),
'pass' => esc_html__( 'Pass', 'learndash' ),
'timestamp' => esc_html__( 'Timestamp', 'learndash' ),
'points' => esc_html__( 'Points', 'learndash' ),
'total_points' => esc_html__( 'Total Points', 'learndash' ),
'percentage' => esc_html__( 'Percentage', 'learndash' ),
// translators: placeholder: Course.
'course_title' => sprintf( _x( '%s Title', 'placeholder: Course', 'learndash' ), LearnDash_Custom_Label::get_label( 'course' ) ),
'timespent' => esc_html__( 'Time Spent', 'learndash' ),
'field' => esc_html__( 'Custom Field', 'learndash' ),
),
),
'field_id' => array(
'id' => $this->shortcodes_section_key . '_field_id',
'name' => 'field_id',
'type' => 'text',
'label' => esc_html__( 'Custom Field ID', 'learndash' ),
// translators: placeholder: quiz.
'help_text' => sprintf( esc_html_x( 'The Field ID is shown on the %s Custom Fields table.', 'placeholder: quiz', 'learndash' ), learndash_get_custom_label( 'quiz' ) ),
'value' => '',
),
'format' => array(
'id' => $this->shortcodes_section_key . '_format',
'name' => 'format',
'type' => 'text',
'label' => esc_html__( 'Format', 'learndash' ),
'placeholder' => esc_html__( 'F j, Y, g:i a shown as March 10, 2001, 5:16 pm', 'learndash' ),
'help_text' => wp_kses_post( __( 'This can be used to change the date format. Default: "F j, Y, g:i a" shows as <i>March 10, 2001, 5:16 pm</i>. See <a target="_blank" href="http://php.net/manual/en/function.date.php">the full list of available date formatting strings here.</a>', 'learndash' ) ),
'value' => '',
),
);
$this->shortcodes_option_fields['quiz'] = array(
'id' => $this->shortcodes_section_key . '_quiz',
'name' => 'quiz',
'type' => 'number',
'label' => sprintf(
// translators: placeholder: Quiz.
esc_html_x( '%s ID', 'placeholder: Quiz', 'learndash' ),
LearnDash_Custom_Label::get_label( 'quiz' )
),
'help_text' => sprintf(
// translators: placeholder: Quiz, Quiz.
esc_html_x( 'Enter a single %1$s ID. Leave blank if used within a %2$s or Certificate.', 'placeholder: Quiz, Quiz', 'learndash' ),
LearnDash_Custom_Label::get_label( 'quiz' ),
LearnDash_Custom_Label::get_label( 'quiz' )
),
'value' => '',
'class' => 'small-text',
'required' => 'required',
);
$this->shortcodes_option_fields['user_id'] = array(
'id' => $this->shortcodes_section_key . '_user_id',
'name' => 'user_id',
'type' => 'number',
'label' => esc_html__( 'User ID', 'learndash' ),
'help_text' => esc_html__( 'Enter a single User ID. Leave blank if used within a Certificate.', 'learndash' ),
'value' => '',
'class' => 'small-text',
);
$this->shortcodes_option_fields['time'] = array(
'id' => $this->shortcodes_section_key . '_time',
'name' => 'time',
'type' => 'text',
'label' => esc_html__( 'Attempt timestamp', 'learndash' ),
'help_text' => sprintf(
// translators: placeholder: Quiz.
esc_html_x( 'Single %s attempt timestamp. See WP user profile "#" link on attempt row. Leave blank to use latest attempt or within a Certificate', 'placeholder: Quiz', 'learndash' ),
LearnDash_Custom_Label::get_label( 'quiz' )
),
'value' => '',
);
/** This filter is documented in includes/settings/settings-metaboxes/class-ld-settings-metabox-course-access-settings.php */
$this->shortcodes_option_fields = apply_filters( 'learndash_settings_fields', $this->shortcodes_option_fields, $this->shortcodes_section_key );
parent::init_shortcodes_section_fields();
}
/**
* Show Shortcode section footer extra
*
* @since 2.4.0
*/
public function show_shortcodes_section_footer_extra() {
?>
<script>
jQuery( function() {
if ( jQuery( 'form#learndash_shortcodes_form_quizinfo select#quizinfo_show' ).length) {
jQuery( 'form#learndash_shortcodes_form_quizinfo select#quizinfo_show').on( 'change', function() {
var selected = jQuery(this).val();
console.log( 'selected[%o]', selected );
if ( ( selected == 'timestamp' ) || ( selected == 'field' ) ) {
// Show the format field row.
jQuery( 'form#learndash_shortcodes_form_quizinfo #quizinfo_format_field').slideDown();
// Show the custom field row.
if ( selected == 'field' ) {
jQuery( 'form#learndash_shortcodes_form_quizinfo #quizinfo_field_id_field').slideDown();
} else {
// Hide and clear the custom field row.
jQuery( 'form#learndash_shortcodes_form_quizinfo #quizinfo_field_id_field').hide();
jQuery( 'form#learndash_shortcodes_form_quizinfo #quizinfo_field_id_field input').val('');
}
} else {
// Hide and clear the custom field row.
jQuery( 'form#learndash_shortcodes_form_quizinfo #quizinfo_field_id_field').hide();
jQuery( 'form#learndash_shortcodes_form_quizinfo #quizinfo_field_id_field input').val('');
// Hide and clear the format field row.
jQuery( 'form#learndash_shortcodes_form_quizinfo #quizinfo_format_field').hide();
jQuery( 'form#learndash_shortcodes_form_quizinfo #quizinfo_format_field input').val('');
}
});
jQuery( 'form#learndash_shortcodes_form_quizinfo select#quizinfo_show').change();
}
if ( jQuery( 'form#learndash_shortcodes_form_quizinfo input#quizinfo_time' ).length) {
jQuery( 'form#learndash_shortcodes_form_quizinfo input#quizinfo_time').on( 'change', function(event) {
var input_value = jQuery(event.currentTarget).val();
if ( ( input_value.length ) && ( input_value.startsWith('data:quizinfo:', 0 ) ) ) {
var input_value_parts = input_value.split(':');
if ( input_value_parts.length > 2 ) {
var field_id = '';
for (let index = 2; index < input_value_parts.length; index++) {
if ( field_id == '' ) {
if ( input_value_parts[index] == 'quiz' ) {
field_id = 'quiz_id';
} else if ( input_value_parts[index] == 'user' ) {
field_id = 'user_id';
} else if ( input_value_parts[index] == 'time' ) {
field_id = 'time';
}
continue;
} else {
if ( field_id == 'quiz_id' ) {
jQuery( 'form#learndash_shortcodes_form_quizinfo input#quizinfo_quiz').val(input_value_parts[index]);
} else if ( field_id == 'user_id' ) {
jQuery( 'form#learndash_shortcodes_form_quizinfo input#quizinfo_user_id').val(input_value_parts[index]);
} else if ( field_id == 'time' ) {
jQuery( 'form#learndash_shortcodes_form_quizinfo input#quizinfo_time').val(input_value_parts[index]);
}
field_id = '';
continue;
}
}
}
}
});
jQuery( 'form#learndash_shortcodes_form_quizinfo select#quizinfo_time').change();
}
});
</script>
<?php
}
}
}