File manager - Edit - /home/theblueo/questionnaire/wp-content/plugins/sfwd-lms/includes/settings/shortcodes-sections/quizinfo.php
Back
<?php if ( ( class_exists( 'LearnDash_Shortcodes_Section' ) ) && ( !class_exists( 'LearnDash_Shortcodes_Section_quizinfo' ) ) ) { class LearnDash_Shortcodes_Section_quizinfo extends LearnDash_Shortcodes_Section { function __construct( $fields_args = array() ) { $this->fields_args = $fields_args; $this->shortcodes_section_key = 'quizinfo'; $this->shortcodes_section_title = sprintf( esc_html_x( '%s Info', 'placeholder: Quiz', 'learndash' ), LearnDash_Custom_Label::get_label( 'quiz' ) ); $this->shortcodes_section_type = 1; $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:', 'placeholders: quiz', 'learndash' ), learndash_get_custom_label_lower( 'quiz' ) ); parent::__construct(); } 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' ), 'help_text' => sprintf( wp_kses_post( _x( 'This parameter determines the information to be shown by the shortcode.<br />cumulative - average for all %s of the %s.<br />aggregate - sum for all %s of the %s.', 'placeholders: quizzes, course, quizzes, course', 'learndash' ) ), learndash_get_custom_label_lower( 'quizzes' ), learndash_get_custom_label_lower( 'course' ), learndash_get_custom_label_lower( 'quizzes' ), learndash_get_custom_label_lower( 'course' ) ), 'value' => 'ID', 'options' => array( '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' ), 'quiz_title' => sprintf(_x( '%s Title', 'placeholder: Quiz', 'learndash' ), LearnDash_Custom_Label::get_label( 'quiz' ) ), 'course_title' => sprintf(_x( '%s Title', 'placeholder: Quiz', 'learndash' ), LearnDash_Custom_Label::get_label( 'course' ) ), 'timespent' => esc_html__( 'Time Spent', 'learndash' ), 'field' => esc_html__( 'Custom Field', 'learndash'), ) ), 'format' => array( 'id' => $this->shortcodes_section_key . '_format', 'name' => 'format', 'type' => 'text', 'label' => esc_html__( 'Format', '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 formating strings here.</a>', 'learndash' ) ), 'value' => '', ), 'field_id' => array( 'id' => $this->shortcodes_section_key . '_field_id', 'name' => 'field_id', 'type' => 'text', 'label' => esc_html__( 'Custom Field ID', 'learndash'), 'help_text' => sprintf( esc_html_x( 'The Field ID is show on the %s Custom Fields table.', 'placeholders: quiz', 'learndash' ), learndash_get_custom_label( 'quiz' ) ), 'value' => '', ), ); $post_types = array( learndash_get_post_type_slug( 'certificate' ), learndash_get_post_type_slug( 'quiz' ) ); if ( ( ! isset( $this->fields_args['typenow'] ) ) || ( ! in_array( $this->fields_args['typenow'], $post_types ) ) ) { $this->shortcodes_option_fields['quiz'] = array( 'id' => $this->shortcodes_section_key . '_quiz', 'name' => 'quiz', 'type' => 'number', 'label' => sprintf( esc_html_x( '%s ID', 'placeholder: Quiz', 'learndash' ), LearnDash_Custom_Label::get_label( 'quiz' ) ), 'help_text' => sprintf( esc_html_x( 'Enter single %s ID', 'placeholders: quiz', 'learndash' ), 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 specific User ID', 'learndash' ), 'value' => '', 'class' => 'small-text', 'required' => 'required' ); $this->shortcodes_option_fields['time'] = array( 'id' => $this->shortcodes_section_key . '_time', 'name' => 'time', 'type' => 'text', 'label' => esc_html__( 'Timestamp', 'learndash'), 'help_text' => sprintf( esc_html_x( 'Enter single %s attempt timestamp', 'placeholders: quiz', 'learndash' ), LearnDash_Custom_Label::get_label( 'quiz' ) ), 'value' => '', 'required' => 'required' ); } $this->shortcodes_option_fields = apply_filters( 'learndash_settings_fields', $this->shortcodes_option_fields, $this->shortcodes_section_key ); parent::init_shortcodes_section_fields(); } function show_shortcodes_section_footer_extra() { ?> <script> jQuery(document).ready(function() { if ( jQuery( 'form#learndash_shortcodes_form_quizinfo select#quizinfo_show' ).length) { jQuery( 'form#learndash_shortcodes_form_quizinfo select#quizinfo_show').change( function() { var selected = jQuery(this).val(); if ( selected == 'timestamp' ) { jQuery( 'form#learndash_shortcodes_form_quizinfo #quizinfo_format_field').slideDown(); } else { jQuery( 'form#learndash_shortcodes_form_quizinfo #quizinfo_format_field').hide(); jQuery( 'form#learndash_shortcodes_form_quizinfo #quizinfo_format_field input').val(''); } if ( selected == 'field' ) { jQuery( 'form#learndash_shortcodes_form_quizinfo #quizinfo_field_id_field').slideDown(); } else { jQuery( 'form#learndash_shortcodes_form_quizinfo #quizinfo_field_id_field').hide(); jQuery( 'form#learndash_shortcodes_form_quizinfo #quizinfo_field_id_field input').val(''); } }); jQuery( 'form#learndash_shortcodes_form_quizinfo select#quizinfo_show').change(); } }); </script> <?php } } }
| ver. 1.4 |
Github
|
.
| PHP 7.0.33 | Generation time: 0 |
proxy
|
phpinfo
|
Settings