modals
5 days ago
questions
5 days ago
attempt-details.php
5 days ago
attempt.php
5 days ago
content.php
5 days ago
nav-item.php
5 days ago
progress-bar.php
5 days ago
question-header.php
5 days ago
question.php
5 days ago
attempt-details.php
25 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Tutor learning area quiz attempt details wrapper. |
| 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 | global $tutor_current_post; |
| 15 | |
| 16 | tutor_load_template( |
| 17 | 'shared.components.quiz.attempt-details', |
| 18 | array( |
| 19 | 'quiz_id' => (int) ( $tutor_current_post->ID ?? 0 ), |
| 20 | 'user_id' => get_current_user_id(), |
| 21 | 'back_url' => get_permalink( $tutor_current_post->ID ?? 0 ), |
| 22 | 'is_learning_area' => true, |
| 23 | ) |
| 24 | ); |
| 25 |