course-filter
3 years ago
dashboard
3 years ago
email
3 years ago
global
3 years ago
instructor
3 years ago
loop
3 years ago
modal
3 years ago
profile
3 years ago
shortcode
3 years ago
single
3 years ago
template-part
3 years ago
widget
3 years ago
archive-course-init.php
3 years ago
archive-course.php
3 years ago
course-embed.php
3 years ago
course-none.php
3 years ago
dashboard.php
3 years ago
feature_disabled.php
3 years ago
instructor-setting.php
3 years ago
login-form.php
3 years ago
login.php
3 years ago
metabox-wrapper.php
3 years ago
permission-denied.php
3 years ago
public-profile.php
3 years ago
single-assignment.php
3 years ago
single-content-loader.php
3 years ago
single-course.php
3 years ago
single-lesson.php
3 years ago
single-preview-lesson.php
3 years ago
single-quiz.php
3 years ago
template.php
3 years ago
metabox-wrapper.php
23 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Front end course builder meta-box wrapper |
| 4 | * |
| 5 | * @package Tutor\Templates |
| 6 | * @author Themeum <support@themeum.com> |
| 7 | * @link https://themeum.com |
| 8 | * @since 2.1.6 |
| 9 | */ |
| 10 | |
| 11 | ?> |
| 12 | <div class="tutor-course-builder-section"> |
| 13 | <div class="tutor-course-builder-section-title"> |
| 14 | <span class="tutor-fs-5 tutor-fw-bold tutor-color-secondary"> |
| 15 | <i class="tutor-icon-angle-up" area-hidden="true"></i> |
| 16 | <span><?php echo esc_html( $title ); ?></span> |
| 17 | </span> |
| 18 | </div> |
| 19 | <div class="tutor-course-builder-section-content"> |
| 20 | <?php echo $content; //phpcs:ignore --data already escaped inside template file ?> |
| 21 | </div> |
| 22 | </div> |
| 23 |