文件操作 - comment-replies.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/tutor/templates/dashboard/discussions/comment-replies.php
编辑文件内容
<?php /** * Discussion replies list template. * * @package Tutor\Templates * @subpackage Dashboard * @author Themeum <support@themeum.com> * @link https://themeum.com * @since 4.0.0 */ defined( 'ABSPATH' ) || exit; use Tutor\Components\Avatar; use Tutor\Components\Button; use Tutor\Components\Constants\Size; use Tutor\Components\Sorting; use TUTOR\Icon; use Tutor\Components\SvgIcon; use Tutor\Components\Constants\Color; use Tutor\Components\Constants\Variant; ?> <?php if ( ! empty( $replies ) ) : ?> <div class="tutor-flex tutor-items-center tutor-justify-between tutor-px-6 tutor-py-5 tutor-border-t" :class="{ 'tutor-loading-spinner': loadingReplies }"> <div class="tutor-small tutor-text-secondary"> <?php esc_html_e( 'Replies', 'tutor' ); ?> <span class="tutor-text-primary tutor-font-medium">(<?php echo (int) count( $replies ); ?>)</span> </div> <?php Sorting::make() ->order( $replies_order ) ->on_change( 'reloadReplies' ) ->bind_active_order( 'repliesOrder' ) ->render(); ?> </div> <div class="tutor-discussion-single-reply-list tutor-border-t"> <?php foreach ( $replies as $reply ) : ?> <div class="tutor-discussion-reply-list-item"> <div class="tutor-flex tutor-gap-5 tutor-w-full" x-show="editingId !== <?php echo (int) $reply->comment_ID; ?>"> <?php Avatar::make()->user( $reply->user_id )->size( Size::SIZE_40 )->render(); ?> <div class="tutor-flex-1"> <div class="tutor-flex tutor-items-center tutor-gap-5 tutor-mb-2 tutor-small"> <span class="tutor-discussion-card-author"> <?php echo esc_html( $reply->comment_author ); ?> </span> <span class="tutor-text-secondary"> <?php /* translators: %s human-readable time difference. */ echo esc_html( sprintf( __( '%s ago', 'tutor' ), human_time_diff( strtotime( $reply->comment_date_gmt ) ) ) ); ?> </span> </div> <div class="tutor-p2 tutor-text-secondary" id="tutor-lesson-comment-text-<?php echo (int) $reply->comment_ID; ?>"> <?php echo wp_kses_post( $reply->comment_content ); ?> </div> </div> <?php if ( $user_id === (int) $reply->user_id ) : ?> <div x-data="tutorPopover({ placement: 'bottom-end' })" class="tutor-ml-auto"> <?php Button::make() ->label( __( 'More options', 'tutor' ) ) ->variant( Variant::GHOST ) ->size( Size::X_SMALL ) ->icon( Icon::ELLIPSES, 'left', Size::SIZE_16, Color::SECONDARY ) ->icon_only() ->attr( 'x-ref', 'trigger' ) ->attr( '@click', 'toggle()' ) ->render(); ?> <div x-ref="content" x-show="open" x-cloak @click.outside="handleClickOutside()" class="tutor-popover"> <div class="tutor-popover-menu" style="min-width: 104px;"> <button class="tutor-popover-menu-item tutor-gap-5" @click="setEditing(<?php echo (int) $reply->comment_ID; ?>); hide()"> <?php SvgIcon::make()->name( Icon::EDIT_2 )->size( 20 )->render(); ?> <?php esc_html_e( 'Edit', 'tutor' ); ?> </button> <button class="tutor-popover-menu-item tutor-gap-5" @click="TutorCore.modal.showModal('tutor-comment-delete-modal', { commentId: <?php echo esc_html( $reply->comment_ID ); ?>, isReply: true }); hide()"> <?php SvgIcon::make()->name( Icon::DELETE_2 )->size( 20 )->render(); ?> <?php esc_html_e( 'Delete', 'tutor' ); ?> </button> </div> </div> </div> <?php endif; ?> </div> <?php if ( $user_id === (int) $reply->user_id ) : ?> <div x-show="editingId === <?php echo (int) $reply->comment_ID; ?>" x-cloak class="tutor-mt-5 tutor-w-full"> <?php tutor_load_template( 'dashboard.discussions.comment-form', array( 'form_id' => 'lesson-comment-edit-' . (int) $reply->comment_ID, 'default_value' => $reply->comment_content, 'submit_handler' => '(data) => handleEditComment(data, ' . (int) $reply->comment_ID . ')', 'cancel_handler' => 'reset(); editingId = null; focused = false', 'is_pending' => 'editCommentMutation?.isPending', 'placeholder' => __( 'Write your comment', 'tutor' ), ) ); ?> </div> <?php endif; ?> </div> <?php endforeach; ?> </div> <?php endif; ?>
修改文件时间
将文件时间修改为当前时间的前一年
删除文件