| @@ -1,33 +1,33 @@ | ||
| 1 | -<?php | |
| 2 | -/** | |
| 3 | - * Template for displaying content of single course offline. | |
| 4 | - * | |
| 5 | - * @author ThimPress | |
| 6 | - * @package LearnPress/Templates | |
| 7 | - * @version 4.2.7 | |
| 8 | - * @version 1.0.1 | |
| 9 | - */ | |
| 10 | - | |
| 11 | -use LearnPress\Models\CourseModel; | |
| 12 | - | |
| 13 | -defined( 'ABSPATH' ) || exit; | |
| 14 | - | |
| 15 | -/** | |
| 16 | - * Header for page | |
| 17 | - */ | |
| 18 | -if ( ! wp_is_block_theme() ) { | |
| 19 | - do_action( 'learn-press/template-header' ); | |
| 20 | -} | |
| 21 | - | |
| 22 | -$course_id = get_the_ID(); | |
| 23 | -if ( $course_id ) { | |
| 24 | - $course = CourseModel::find( $course_id, true ); | |
| 25 | - do_action( 'learn-press/single-course/offline/layout', $course ); | |
| 26 | -} | |
| 27 | - | |
| 28 | -/** | |
| 29 | - * Footer for page | |
| 30 | - */ | |
| 31 | -if ( ! wp_is_block_theme() ) { | |
| 32 | - do_action( 'learn-press/template-footer' ); | |
| 33 | -} | |
| 1 | +<?php | |
| 2 | +/** | |
| 3 | + * Template for displaying content of single course offline. | |
| 4 | + * | |
| 5 | + * @author ThimPress | |
| 6 | + * @package LearnPress/Templates | |
| 7 | + * @version 4.2.7 | |
| 8 | + * @version 1.0.1 | |
| 9 | + */ | |
| 10 | + | |
| 11 | +use LearnPress\Models\CourseModel; | |
| 12 | + | |
| 13 | +defined( 'ABSPATH' ) || exit; | |
| 14 | + | |
| 15 | +/** | |
| 16 | + * Header for page | |
| 17 | + */ | |
| 18 | +if ( ! wp_is_block_theme() ) { | |
| 19 | + do_action( 'learn-press/template-header' ); | |
| 20 | +} | |
| 21 | + | |
| 22 | +$course_id = get_the_ID(); | |
| 23 | +if ( $course_id ) { | |
| 24 | + $course = CourseModel::find( $course_id, true ); | |
| 25 | + do_action( 'learn-press/single-course/offline/layout', $course ); | |
| 26 | +} | |
| 27 | + | |
| 28 | +/** | |
| 29 | + * Footer for page | |
| 30 | + */ | |
| 31 | +if ( ! wp_is_block_theme() ) { | |
| 32 | + do_action( 'learn-press/template-footer' ); | |
| 33 | +} | |