文件操作 - header.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/tutor/views/quiz/header.php
编辑文件内容
<?php /** * Quiz header * * @package Tutor\Views * @subpackage Tutor\Quiz * @author Themeum <support@themeum.com> * @link https://themeum.com * @since 1.0.0 */ // Load header based on context. $file_path = __DIR__ . '/header-context/' . $context . '.php'; if ( $context && file_exists( $file_path ) ) { // Prepare header data. $course_title = get_the_title( $attempt_data->course_id ); $course_url = get_permalink( $attempt_data->course_id ); $quiz_title = get_the_title( $attempt_data->quiz_id ); $quiz_url = get_permalink( $attempt_data->quiz_id ); $user_data = get_userdata( $attempt_data->user_id ); $student_name = $user_data->display_name; $student_url = '#'; //phpcs:ignore extract( \Tutor\Models\QuizModel::get_quiz_attempt_timing( $attempt_data ) ); // $attempt_duration, $attempt_duration_taken; $quiz_time = $attempt_duration; $attempt_time = $attempt_duration_taken; $question_count = $attempt_data->total_questions; $total_marks = $attempt_data->total_marks; $earned_marks = $attempt_data->earned_marks; $unserialize_attempt = maybe_unserialize( $attempt_data->attempt_info ); $pass_marks = ''; $passing_grade = isset( $unserialize_attempt['passing_grade'] ) ? $unserialize_attempt['passing_grade'] : 0; $back_url = isset( $back_url ) ? $back_url : ( isset( $_GET['attempt_id'] ) ? remove_query_arg( 'attempt_id', is_admin() ? admin_url( 'admin.php?page=tutor_quiz_attempts' ) : tutor()->current_url ) : null ); include $file_path; }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件