Your IP : 216.73.216.171


Current Path : /home/ereika83/www/wp-content/plugins/sfwd-lms/src/views/themes/breezy/focus/
Upload File :
Current File : /home/ereika83/www/wp-content/plugins/sfwd-lms/src/views/themes/breezy/focus/comments_list.php

<?php
/**
 * View: Focus Mode Comments List??
 *
 * @since 4.6.0
 * @version 4.6.0
 *
 * @var Course_Step $model Course step model.
 * @var WP_User     $user  User.
 *
 * @package LearnDash\Core
 *
 * cSpell:ignore replytocom
 */

/** NOTICE: This code is currently under development and may not be stable.
 *  Its functionality, behavior, and interfaces may change at any time without notice.
 *  Please refrain from using it in production or other critical systems.
 *  By using this code, you assume all risks and liabilities associated with its use.
 *  Thank you for your understanding and cooperation.
 **/

use LearnDash\Core\Models\Interfaces\Course_Step;

// TODO: Refactor.

if ( ! function_exists( 'learndash_focus_mode_comments_list' ) ) {
	/**
	 * Prints the focus mode comments list output.
	 *
	 * Used as a callback by `wp_list_comments()` for displaying the comments.
	 *
	 * @since 3.1.0
	 *
	 * @global WP_Roles   $wp_roles WordPress role management object.
	 * @global WP_Post    $post     Global post object.
	 * @global WP_Comment $comment  Global comment object.
	 *
	 * @param WP_Comment   $comment The comment object.
	 * @param array<mixed> $args    An array of comment arguments.
	 * @param int          $depth   The depth of the comment.
	 */
	function learndash_focus_mode_comments_list( $comment, $args, $depth ): void {
		global $wp_roles;
		global $post;

		// phpcs:ignore WordPress.WP.GlobalVariablesOverride
		$GLOBALS['comment'] = $comment; // TODO: Refactor.

		$user_data = get_userdata( (int) $comment->user_id );

		if ( ! $user_data instanceof WP_User ) {
			return;
		}

		$roles        = $user_data->roles;
		$role_classes = '';
		if ( ! empty( $roles ) ) {
			foreach ( $roles as $role ) :
				$role_classes .= 'role-' . $role;
				if ( 'administrator' === $role || 'group_leader' === $role ) {
					$role_name = translate_user_role( $wp_roles->roles[ $role ]['name'] );
				}

				endforeach;
		}

		$learndash_avatar_class = empty( get_avatar( $comment->comment_author_email ) ) ? ' ld-no-avatar-image' : '';

		?>

		<div <?php comment_class( 'ld-focus-comment ptype-' . $post->post_type . ' ' . $role_classes . $learndash_avatar_class ); ?> id="comment-<?php comment_ID(); ?>">
			<div class="ld-comment-wrapper">
			<?php if ( '0' == $comment->comment_approved ) : ?>
				<span class="ld-comment-alert"><?php esc_html_e( 'Your response is awaiting for approval.', 'learndash' ); ?></span>
			<?php endif; ?>

				<div class="ld-comment-avatar">
					<?php
					$avatar_post = get_avatar( $comment->comment_author_email );
					if ( ! empty( $avatar_post ) ) {
						echo wp_kses_post( $avatar_post );
					}
					?>
					<span class="ld-comment-avatar-author">
						<span class="ld-comment-author-name">
							<?php
							echo esc_html( $comment->comment_author );
							if ( ! empty( $role_name ) ) {
								echo esc_html( ' (' . $role_name . ')' );
							}
							?>
						</span>
						<a class="ld-comment-permalink" href="<?php echo esc_url( get_comment_link( (int) $comment->comment_ID ) ); ?>">
						<?php
						printf(
							// translators: placeholders: %1$s: Comment Date, %2$s: Comment Time.
							esc_html_x( '%1$s at %2$s', 'placeholders: comment date, comment time', 'learndash' ),
							'<span> ' . esc_html( get_comment_date() ) . '</span>',
							'<span> ' . esc_html( get_comment_time() ) . '</span>'
						);
						?>

						</a>
					</span>
				</div>

				<div class="ld-comment-body">
					<?php comment_text(); ?>
					<div class="ld-comment-reply">
						<?php
						comment_reply_link(
							array_merge(
								$args,
								array(
									'reply_text' => esc_html__( 'Reply', 'learndash' ),
									'after'      => '',
									'depth'      => $depth,
									'max_depth'  => $args['max_depth'],
								)
							)
						);
						?>
					</div>
				</div>
			</div>
		<?php
	}
}

if ( ! isset( $_GET['replytocom'] ) ) {
	wp_list_comments(
		/**
		 * Filters Focus mode comment list arguments.
		 *
		 * @since 3.0.0
		 *
		 * @param array $comment_list_args Comment List arguments to be used in wp_list_comments arguments.
		 */
		apply_filters(
			'learndash_focus_mode_list_comments_args',
			array(
				'style'    => 'div',
				'page'     => get_query_var( 'cpage', 1 ),
				'callback' => 'learndash_focus_mode_comments_list',
			)
		)
	);
}