ecommerce
6 months ago
tools
1 year ago
add_new_instructor.php
2 years ago
addons.php
1 year ago
announcements.php
11 months ago
answer.php
3 years ago
course-builder.php
1 year ago
course-list.php
10 months ago
enable_disable_addons.php
10 months ago
feature-promotion.php
2 years ago
get-pro.php
8 months ago
instructors.php
11 months ago
question_answer.php
11 months ago
quiz_attempts.php
9 months ago
students.php
11 months ago
tools.php
3 years ago
view_attempt.php
6 months ago
welcome.php
1 year ago
whats-new.php
11 months ago
withdraw_requests.php
9 months ago
course-builder.php
42 lines
| 1 | <?php |
| 2 | /** |
| 3 | * View for course builder. |
| 4 | * |
| 5 | * @package Tutor\Views |
| 6 | * @subpackage Pages |
| 7 | * @author Themeum <support@themeum.com> |
| 8 | * @link https://themeum.com |
| 9 | * @since 3.0.0 |
| 10 | */ |
| 11 | |
| 12 | if ( ! defined( 'ABSPATH' ) ) { |
| 13 | exit; |
| 14 | } |
| 15 | |
| 16 | if ( is_admin() ) { |
| 17 | ?> |
| 18 | <div id="tutor-course-builder"></div> |
| 19 | <?php |
| 20 | do_action( 'tutor_course_builder_footer' ); |
| 21 | } else { |
| 22 | ?> |
| 23 | |
| 24 | <!DOCTYPE html> |
| 25 | <html <?php language_attributes(); ?>> |
| 26 | <head> |
| 27 | <meta charset="<?php bloginfo( 'charset' ); ?>"> |
| 28 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 29 | |
| 30 | <title><?php esc_html_e( 'Tutor Course Builder', 'tutor' ); ?></title> |
| 31 | |
| 32 | <?php wp_head(); ?> |
| 33 | </head> |
| 34 | <body <?php body_class(); ?>> |
| 35 | <div id="tutor-course-builder"></div> |
| 36 | <?php do_action( 'tutor_course_builder_footer' ); ?> |
| 37 | <?php wp_footer(); ?> |
| 38 | </body> |
| 39 | </html> |
| 40 | |
| 41 | <?php } ?> |
| 42 |