modals
1 month ago
questions
2 weeks ago
attempt-details.php
1 month ago
attempt.php
1 month ago
content.php
1 month ago
nav-item.php
1 month ago
progress-bar.php
1 month ago
question-header.php
1 month ago
question.php
1 month ago
nav-item.php
26 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Show quiz nav item on the learning area |
| 4 | * |
| 5 | * @package Tutor\Templates |
| 6 | * @subpackage LearningArea |
| 7 | * @author Themeum <support@themeum.com> |
| 8 | * @link https://themeum.com |
| 9 | * @since 4.0.0 |
| 10 | */ |
| 11 | |
| 12 | defined( 'ABSPATH' ) || exit; |
| 13 | |
| 14 | use TUTOR\Quiz; |
| 15 | |
| 16 | global $tutor_current_content_id; |
| 17 | |
| 18 | $quiz = $quiz ?? null; |
| 19 | $can_access = $can_access ?? false; |
| 20 | |
| 21 | if ( ! $quiz && ! is_a( $quiz, 'WP_Post' ) ) { |
| 22 | return; |
| 23 | } |
| 24 | |
| 25 | Quiz::render_sidebar_nav( $quiz, $can_access, $tutor_current_content_id ); |
| 26 |