File manager - Edit - /home/theblueo/tv/wp-content/plugins/sfwd-lms/themes/legacy/templates/learndash_course_lesson_not_available.php
Back
<?php /** * Displays the Course Lesson Not Available message * * Available Variables: * user_id : (integer) The user_id whose points to show * course_id : (integer) The ID of the couse shown * lesson_id: (integer) The Of of the lesson not available * ld_lesson_access_from_int : (integer) timestamp when lesson will become available * ld_lesson_access_from_date : (string) Formatted human readable date/time of ld_lesson_access_from_int * context : (string) The context will be set based on where this message is shown. course, lesson, loop, etc. * * @since 2.4 * * @package LearnDash\Course */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } // First generate the message $message = sprintf( wp_kses_post( __( '<span class="ld-display-label">Available on:</span> <span class="ld-display-date">%s</span>', 'learndash' ) ), learndash_adjust_date_time_display( $lesson_access_from_int ) ); $wrap_start = '<small class="notavailable_message">'; $wrap_end = '</small>'; // The figure out how to display it if ( $context == 'lesson' ) { // On the lesson single we display additional information. $message .= '<br><br><a href="'. get_permalink( $course_id) . '">'. sprintf( esc_html_x( 'Return to %s Overview', 'Return to Course Overview Label', 'learndash' ), LearnDash_Custom_Label::get_label( 'course' ) ) . '</a>'; $wrap_start = '<div class="notavailable_message">'; $wrap_end = '</div>'; } else if ( $context == 'course' ) { // No changes for course } else { // Default no changes } echo $wrap_start . apply_filters( 'learndash_lesson_available_from_text', $message, get_post( $lesson_id ), $lesson_access_from_int ) . $wrap_end;
| ver. 1.4 |
Github
|
.
| PHP 7.0.33 | Generation time: 0 |
proxy
|
phpinfo
|
Settings