PHP 8.0.30
Preview: class-walker-comment.php Size: 13.89 KB
/home/certprox/template.certproxywizard.com/wp-includes/class-walker-comment.php

<?php
/**
 * Comment API: Walker_Comment class
 *
 * @package WordPress
 * @subpackage Comments
 * @since 4.4.0
 */

/**
 * Core walker class used to create an HTML list of comments.
 *
 * @since 2.7.0
 *
 * @see Walker
 */
class Walker_Comment extends Walker {

	/**
	 * What the class handles.
	 *
	 * @since 2.7.0
	 * @var string
	 *
	 * @see Walker::$tree_type
	 */
	public $tree_type = 'comment';

	/**
	 * Database fields to use.
	 *
	 * @since 2.7.0
	 * @var string[]
	 *
	 * @see Walker::$db_fields
	 * @todo Decouple this
	 */
	public $db_fields = array(
		'parent' => 'comment_parent',
		'id'     => 'comment_ID',
	);

	/**
	 * Starts the list before the elements are added.
	 *
	 * @since 2.7.0
	 *
	 * @see Walker::start_lvl()
	 * @global int $comment_depth
	 *
	 * @param string $output Used to append additional content (passed by reference).
	 * @param int    $depth  Optional. Depth of the current comment. Default 0.
	 * @param array  $args   Optional. Uses 'style' argument for type of HTML list. Default empty array.
	 */
	public function start_lvl( &$output, $depth = 0, $args = array() ) {
		$GLOBALS['comment_depth'] = $depth + 1;

		switch ( $args['style'] ) {
			case 'div':
				break;
			case 'ol':
				$output .= '<ol class="children">' . "\n";
				break;
			case 'ul':
			default:
				$output .= '<ul class="children">' . "\n";
				break;
		}
	}

	/**
	 * Ends the list of items after the elements are added.
	 *
	 * @since 2.7.0
	 *
	 * @see Walker::end_lvl()
	 * @global int $comment_depth
	 *
	 * @param string $output Used to append additional content (passed by reference).
	 * @param int    $depth  Optional. Depth of the current comment. Default 0.
	 * @param array  $args   Optional. Will only append content if style argument value is 'ol' or 'ul'.
	 *                       Default empty array.
	 */
	public function end_lvl( &$output, $depth = 0, $args = array() ) {
		$GLOBALS['comment_depth'] = $depth + 1;

		switch ( $args['style'] ) {
			case 'div':
				break;
			case 'ol':
				$output .= "</ol><!-- .children -->\n";
				break;
			case 'ul':
			default:
				$output .= "</ul><!-- .children -->\n";
				break;
		}
	}

	/**
	 * Traverses elements to create list from elements.
	 *
	 * This function is designed to enhance Walker::display_element() to
	 * display children of higher nesting levels than selected inline on
	 * the highest depth level displayed. This prevents them being orphaned
	 * at the end of the comment list.
	 *
	 * Example: max_depth = 2, with 5 levels of nested content.
	 *     1
	 *      1.1
	 *        1.1.1
	 *        1.1.1.1
	 *        1.1.1.1.1
	 *        1.1.2
	 *        1.1.2.1
	 *     2
	 *      2.2
	 *
	 * @since 2.7.0
	 *
	 * @see Walker::display_element()
	 * @see wp_list_comments()
	 *
	 * @param WP_Comment $element           Comment data object.
	 * @param array      $children_elements List of elements to continue traversing. Passed by reference.
	 * @param int        $max_depth         Max depth to traverse.
	 * @param int        $depth             Depth of the current element.
	 * @param array      $args              An array of arguments.
	 * @param string     $output            Used to append additional content. Passed by reference.
	 */
	public function display_element( $element, &$children_elements, $max_depth, $depth, $args, &$output ) {
		if ( ! $element ) {
			return;
		}

		$id_field = $this->db_fields['id'];
		$id       = $element->$id_field;

		parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output );

		/*
		 * If at the max depth, and the current element still has children, loop over those
		 * and display them at this level. This is to prevent them being orphaned to the end
		 * of the list.
		 */
		if ( $max_depth <= $depth + 1 && isset( $children_elements[ $id ] ) ) {
			foreach ( $children_elements[ $id ] as $child ) {
				$this->display_element( $child, $children_elements, $max_depth, $depth, $args, $output );
			}

			unset( $children_elements[ $id ] );
		}
	}

	/**
	 * Starts the element output.
	 *
	 * @since 2.7.0
	 * @since 5.9.0 Renamed `$comment` to `$data_object` and `$id` to `$current_object_id`
	 *              to match parent class for PHP 8 named parameter support.
	 *
	 * @see Walker::start_el()
	 * @see wp_list_comments()
	 * @global int        $comment_depth
	 * @global WP_Comment $comment       Global comment object.
	 *
	 * @param string     $output            Used to append additional content. Passed by reference.
	 * @param WP_Comment $data_object       Comment data object.
	 * @param int        $depth             Optional. Depth of the current comment in reference to parents. Default 0.
	 * @param array      $args              Optional. An array of arguments. Default empty array.
	 * @param int        $current_object_id Optional. ID of the current comment. Default 0.
	 */
	public function start_el( &$output, $data_object, $depth = 0, $args = array(), $current_object_id = 0 ) {
		// Restores the more descriptive, specific name for use within this method.
		$comment = $data_object;

		++$depth;
		$GLOBALS['comment_depth'] = $depth;
		$GLOBALS['comment']       = $comment;

		if ( ! empty( $args['callback'] ) ) {
			ob_start();
			call_user_func( $args['callback'], $comment, $args, $depth );
			$output .= ob_get_clean();
			return;
		}

		if ( 'comment' === $comment->comment_type ) {
			add_filter( 'comment_text', array( $this, 'filter_comment_text' ), 40, 2 );
		}

		if ( ( 'pingback' === $comment->comment_type || 'trackback' === $comment->comment_type ) && $args['short_ping'] ) {
			ob_start();
			$this->ping( $comment, $depth, $args );
			$output .= ob_get_clean();
		} elseif ( 'html5' === $args['format'] ) {
			ob_start();
			$this->html5_comment( $comment, $depth, $args );
			$output .= ob_get_clean();
		} else {
			ob_start();
			$this->comment( $comment, $depth, $args );
			$output .= ob_get_clean();
		}

		if ( 'comment' === $comment->comment_type ) {
			remove_filter( 'comment_text', array( $this, 'filter_comment_text' ), 40 );
		}
	}

	/**
	 * Ends the element output, if needed.
	 *
	 * @since 2.7.0
	 * @since 5.9.0 Renamed `$comment` to `$data_object` to match parent class for PHP 8 named parameter support.
	 *
	 * @see Walker::end_el()
	 * @see wp_list_comments()
	 *
	 * @param string     $output      Used to append additional content. Passed by reference.
	 * @param WP_Comment $data_object Comment data object.
	 * @param int        $depth       Optional. Depth of the current comment. Default 0.
	 * @param array      $args        Optional. An array of arguments. Default empty array.
	 */
	public function end_el( &$output, $data_object, $depth = 0, $args = array() ) {
		if ( ! empty( $args['end-callback'] ) ) {
			ob_start();
			call_user_func(
				$args['end-callback'],
				$data_object, // The current comment object.
				$args,
				$depth
			);
			$output .= ob_get_clean();
			return;
		}
		if ( 'div' === $args['style'] ) {
			$output .= "</div><!-- #comment-## -->\n";
		} else {
			$output .= "</li><!-- #comment-## -->\n";
		}
	}

	/**
	 * Outputs a pingback comment.
	 *
	 * @since 3.6.0
	 *
	 * @see wp_list_comments()
	 *
	 * @param WP_Comment $comment The comment object.
	 * @param int        $depth   Depth of the current comment.
	 * @param array      $args    An array of arguments.
	 */
	protected function ping( $comment, $depth, $args ) {
		$tag = ( 'div' === $args['style'] ) ? 'div' : 'li';
		?>
		<<?php echo $tag; ?> id="comment-<?php comment_ID(); ?>" <?php comment_class( '', $comment ); ?>>
			<div class="comment-body">
				<?php _e( 'Pingback:' ); ?> <?php comment_author_link( $comment ); ?> <?php edit_comment_link( __( 'Edit' ), '<span class="edit-link">', '</span>' ); ?>
			</div>
		<?php
	}

	/**
	 * Filters the comment text.
	 *
	 * Removes links from the pending comment's text if the commenter did not consent
	 * to the comment cookies.
	 *
	 * @since 5.4.2
	 *
	 * @param string          $comment_text Text of the current comment.
	 * @param WP_Comment|null $comment      The comment object. Null if not found.
	 * @return string Filtered text of the current comment.
	 */
	public function filter_comment_text( $comment_text, $comment ) {
		$commenter          = wp_get_current_commenter();
		$show_pending_links = ! empty( $commenter['comment_author'] );

		if ( $comment && '0' === $comment->comment_approved && ! $show_pending_links ) {
			$comment_text = wp_kses( $comment_text, array() );
		}

		return $comment_text;
	}

	/**
	 * Outputs a single comment.
	 *
	 * @since 3.6.0
	 *
	 * @see wp_list_comments()
	 *
	 * @param WP_Comment $comment Comment to display.
	 * @param int        $depth   Depth of the current comment.
	 * @param array      $args    An array of arguments.
	 */
	protected function comment( $comment, $depth, $args ) {
		if ( 'div' === $args['style'] ) {
			$tag       = 'div';
			$add_below = 'comment';
		} else {
			$tag       = 'li';
			$add_below = 'div-comment';
		}

		$commenter          = wp_get_current_commenter();
		$show_pending_links = isset( $commenter['comment_author'] ) && $commenter['comment_author'];

		if ( $commenter['comment_author_email'] ) {
			$moderation_note = __( 'Your comment is awaiting moderation.' );
		} else {
			$moderation_note = __( 'Your comment is awaiting moderation. This is a preview; your comment will be visible after it has been approved.' );
		}
		?>
		<<?php echo $tag; ?> <?php comment_class( $this->has_children ? 'parent' : '', $comment ); ?> id="comment-<?php comment_ID(); ?>">
		<?php if ( 'div' !== $args['style'] ) : ?>
		<div id="div-comment-<?php comment_ID(); ?>" class="comment-body">
		<?php endif; ?>
		<div class="comment-author vcard">
			<?php
			if ( 0 !== $args['avatar_size'] ) {
				echo get_avatar( $comment, $args['avatar_size'] );
			}
			?>
			<?php
			$comment_author = get_comment_author_link( $comment );

			if ( '0' === $comment->comment_approved && ! $show_pending_links ) {
				$comment_author = get_comment_author( $comment );
			}

			printf(
				/* translators: %s: Comment author link. */
				__( '%s <span class="says">says:</span>' ),
				sprintf( '<cite class="fn">%s</cite>', $comment_author )
			);
			?>
		</div>
		<?php if ( '0' === $comment->comment_approved ) : ?>
		<em class="comment-awaiting-moderation"><?php echo $moderation_note; ?></em>
		<br />
		<?php endif; ?>

		<div class="comment-meta commentmetadata">
			<?php
			printf(
				'<a href="%s">%s</a>',
				esc_url( get_comment_link( $comment, $args ) ),
				sprintf(
					/* translators: 1: Comment date, 2: Comment time. */
					__( '%1$s at %2$s' ),
					get_comment_date( '', $comment ),
					get_comment_time()
				)
			);

			edit_comment_link( __( '(Edit)' ), ' &nbsp;&nbsp;', '' );
			?>
		</div>

		<?php
		comment_text(
			$comment,
			array_merge(
				$args,
				array(
					'add_below' => $add_below,
					'depth'     => $depth,
					'max_depth' => $args['max_depth'],
				)
			)
		);
		?>

		<?php
		comment_reply_link(
			array_merge(
				$args,
				array(
					'add_below' => $add_below,
					'depth'     => $depth,
					'max_depth' => $args['max_depth'],
					'before'    => '<div class="reply">',
					'after'     => '</div>',
				)
			)
		);
		?>

		<?php if ( 'div' !== $args['style'] ) : ?>
		</div>
		<?php endif; ?>
		<?php
	}

	/**
	 * Outputs a comment in the HTML5 format.
	 *
	 * @since 3.6.0
	 *
	 * @see wp_list_comments()
	 *
	 * @param WP_Comment $comment Comment to display.
	 * @param int        $depth   Depth of the current comment.
	 * @param array      $args    An array of arguments.
	 */
	protected function html5_comment( $comment, $depth, $args ) {
		$tag = ( 'div' === $args['style'] ) ? 'div' : 'li';

		$commenter          = wp_get_current_commenter();
		$show_pending_links = ! empty( $commenter['comment_author'] );

		if ( $commenter['comment_author_email'] ) {
			$moderation_note = __( 'Your comment is awaiting moderation.' );
		} else {
			$moderation_note = __( 'Your comment is awaiting moderation. This is a preview; your comment will be visible after it has been approved.' );
		}
		?>
		<<?php echo $tag; ?> id="comment-<?php comment_ID(); ?>" <?php comment_class( $this->has_children ? 'parent' : '', $comment ); ?>>
			<article id="div-comment-<?php comment_ID(); ?>" class="comment-body">
				<footer class="comment-meta">
					<div class="comment-author vcard">
						<?php
						if ( 0 !== $args['avatar_size'] ) {
							echo get_avatar( $comment, $args['avatar_size'] );
						}
						?>
						<?php
						$comment_author = get_comment_author_link( $comment );

						if ( '0' === $comment->comment_approved && ! $show_pending_links ) {
							$comment_author = get_comment_author( $comment );
						}

						printf(
							/* translators: %s: Comment author link. */
							__( '%s <span class="says">says:</span>' ),
							sprintf( '<b class="fn">%s</b>', $comment_author )
						);
						?>
					</div><!-- .comment-author -->

					<div class="comment-metadata">
						<?php
						printf(
							'<a href="%s"><time datetime="%s">%s</time></a>',
							esc_url( get_comment_link( $comment, $args ) ),
							get_comment_time( 'c' ),
							sprintf(
								/* translators: 1: Comment date, 2: Comment time. */
								__( '%1$s at %2$s' ),
								get_comment_date( '', $comment ),
								get_comment_time()
							)
						);

						edit_comment_link( __( 'Edit' ), ' <span class="edit-link">', '</span>' );
						?>
					</div><!-- .comment-metadata -->

					<?php if ( '0' === $comment->comment_approved ) : ?>
					<em class="comment-awaiting-moderation"><?php echo $moderation_note; ?></em>
					<?php endif; ?>
				</footer><!-- .comment-meta -->

				<div class="comment-content">
					<?php comment_text(); ?>
				</div><!-- .comment-content -->

				<?php
				if ( '1' === $comment->comment_approved || $show_pending_links ) {
					comment_reply_link(
						array_merge(
							$args,
							array(
								'add_below' => 'div-comment',
								'depth'     => $depth,
								'max_depth' => $args['max_depth'],
								'before'    => '<div class="reply">',
								'after'     => '</div>',
							)
						)
					);
				}
				?>
			</article><!-- .comment-body -->
		<?php
	}
}

Directory Contents

Dirs: 33 × Files: 256

Name Size Perms Modified Actions
- drwxr-xr-x 2026-06-08 11:09:49
Edit Download
ai-client DIR
- drwxr-xr-x 2026-06-08 11:09:49
Edit Download
assets DIR
- drwxr-xr-x 2026-06-08 11:09:49
Edit Download
- drwxr-xr-x 2026-06-15 03:12:01
Edit Download
- drwxr-xr-x 2026-06-15 03:12:04
Edit Download
- drwxr-xr-x 2026-06-15 03:12:07
Edit Download
blocks DIR
- drwxr-xr-x 2026-06-08 11:09:49
Edit Download
build DIR
- drwxr-xr-x 2026-06-15 03:12:13
Edit Download
- drwxr-xr-x 2026-06-08 11:09:49
Edit Download
- drwxr-xr-x 2026-06-15 03:12:51
Edit Download
css DIR
- drwxr-xr-x 2026-06-08 11:09:49
Edit Download
customize DIR
- drwxr-xr-x 2026-06-15 03:13:42
Edit Download
fonts DIR
- drwxr-xr-x 2026-06-08 11:09:49
Edit Download
html-api DIR
- drwxr-xr-x 2026-06-15 03:13:55
Edit Download
ID3 DIR
- drwxr-xr-x 2026-06-08 11:09:49
Edit Download
images DIR
- drwxr-xr-x 2026-06-08 11:09:49
Edit Download
- drwxr-xr-x 2026-06-15 03:14:09
Edit Download
IXR DIR
- drwxr-xr-x 2026-06-15 03:10:02
Edit Download
js DIR
- drwxr-xr-x 2026-06-08 11:09:50
Edit Download
l10n DIR
- drwxr-xr-x 2026-06-15 03:16:52
Edit Download
- drwxr-xr-x 2026-06-08 11:09:50
Edit Download
- drwxr-xr-x 2026-06-08 11:09:50
Edit Download
PHPMailer DIR
- drwxr-xr-x 2026-06-15 03:10:06
Edit Download
pomo DIR
- drwxr-xr-x 2026-06-08 11:09:50
Edit Download
Requests DIR
- drwxr-xr-x 2026-06-08 11:09:50
Edit Download
rest-api DIR
- drwxr-xr-x 2026-06-15 03:19:57
Edit Download
SimplePie DIR
- drwxr-xr-x 2026-06-08 11:09:50
Edit Download
sitemaps DIR
- drwxr-xr-x 2026-06-08 11:09:50
Edit Download
- drwxr-xr-x 2026-06-08 11:09:50
Edit Download
- drwxr-xr-x 2026-06-08 11:09:50
Edit Download
Text DIR
- drwxr-xr-x 2026-06-08 11:09:50
Edit Download
- drwxr-xr-x 2026-06-15 03:21:33
Edit Download
widgets DIR
- drwxr-xr-x 2026-06-15 03:21:37
Edit Download
23.80 KB lrw-r--r-- 2026-03-23 17:41:52
Edit Download
7.82 KB lrw-r--r-- 2026-02-19 08:57:02
Edit Download
38.39 KB lrw-r--r-- 2026-05-13 00:29:46
Edit Download
2.49 KB lrw-r--r-- 2026-04-26 21:00:40
Edit Download
11.90 KB lrw-r--r-- 2025-09-03 09:18:32
Edit Download
19.38 KB lrw-r--r-- 2026-03-23 06:58:48
Edit Download
7.35 KB lrw-r--r-- 2025-10-20 05:52:24
Edit Download
28.05 KB lrw-r--r-- 2026-03-12 21:24:40
Edit Download
316 B lrw-r--r-- 2021-08-11 06:08:02
Edit Download
15.24 KB lrw-r--r-- 2026-02-10 14:37:40
Edit Download
61.33 KB lrw-r--r-- 2026-02-25 13:27:46
Edit Download
17.83 KB lrw-r--r-- 2026-01-11 04:36:50
Edit Download
116.64 KB lrw-r--r-- 2026-05-19 06:06:44
Edit Download
12.47 KB lrw-r--r-- 2025-03-19 21:15:36
Edit Download
15.07 KB lrw-r--r-- 2024-03-23 12:20:12
Edit Download
10.76 KB lrw-r--r-- 2026-03-14 17:23:50
Edit Download
13.17 KB lrw-r--r-- 2025-04-29 19:44:38
Edit Download
33.83 KB lrw-r--r-- 2025-11-04 16:31:30
Edit Download
42.61 KB lrw-r--r-- 2026-01-06 03:57:56
Edit Download
55.65 KB lrw-r--r-- 2026-03-19 11:41:50
Edit Download
12.53 KB lrw-r--r-- 2026-02-23 03:34:46
Edit Download
29.30 KB lrw-r--r-- 2026-03-14 21:55:50
Edit Download
539 B lrw-r--r-- 2024-09-30 19:50:20
Edit Download
367 B lrw-r--r-- 2022-06-17 08:20:14
Edit Download
2.55 KB lrw-r--r-- 2025-01-22 17:48:26
Edit Download
42.65 KB lrw-r--r-- 2025-08-25 10:10:30
Edit Download
401 B lrw-r--r-- 2022-06-17 08:20:14
Edit Download
6.61 KB lrw-r--r-- 2024-09-17 18:08:16
Edit Download
664 B lrw-r--r-- 2020-07-21 09:58:02
Edit Download
20.63 KB lrw-r--r-- 2024-10-25 17:26:20
Edit Download
2.18 KB lrw-r--r-- 2023-04-05 10:12:26
Edit Download
453 B lrw-r--r-- 2024-09-30 19:50:20
Edit Download
457 B lrw-r--r-- 2021-01-26 11:45:58
Edit Download
36.83 KB lrw-r--r-- 2023-02-03 11:35:20
Edit Download
2.41 KB lrw-r--r-- 2023-09-14 09:46:20
Edit Download
8.28 KB lrw-r--r-- 2023-09-08 06:32:24
Edit Download
13.89 KB lrw-r--r-- 2024-03-18 13:46:14
Edit Download
11.76 KB lrw-r--r-- 2025-01-21 19:26:24
Edit Download
2.65 KB lrw-r--r-- 2023-09-14 09:46:20
Edit Download
7.43 KB lrw-r--r-- 2023-09-14 09:46:20
Edit Download
17.58 KB lrw-r--r-- 2026-03-12 21:26:42
Edit Download
5.14 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
16.70 KB lrw-r--r-- 2025-04-03 10:53:28
Edit Download
8.07 KB lrw-r--r-- 2026-02-13 22:37:42
Edit Download
2.92 KB lrw-r--r-- 2025-09-28 18:56:28
Edit Download
1.32 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
4.60 KB lrw-r--r-- 2025-08-07 11:47:34
Edit Download
11.57 KB lrw-r--r-- 2026-01-05 03:24:34
Edit Download
2.50 KB lrw-r--r-- 2025-10-21 04:14:02
Edit Download
1.95 KB lrw-r--r-- 2026-03-10 09:29:34
Edit Download
11.25 KB lrw-r--r-- 2026-03-12 21:25:20
Edit Download
4.28 KB lrw-r--r-- 2025-12-03 17:47:34
Edit Download
10.07 KB lrw-r--r-- 2026-03-10 19:11:48
Edit Download
68.32 KB lrw-r--r-- 2026-01-21 23:12:36
Edit Download
6.27 KB lrw-r--r-- 2026-01-11 04:50:42
Edit Download
6.40 KB lrw-r--r-- 2026-03-19 12:40:54
Edit Download
1.99 KB lrw-r--r-- 2024-09-19 23:07:12
Edit Download
6.91 KB lrw-r--r-- 2026-01-05 03:24:34
Edit Download
4.91 KB lrw-r--r-- 2025-09-29 13:29:36
Edit Download
16.83 KB lrw-r--r-- 2026-01-05 03:24:34
Edit Download
24.14 KB lrw-r--r-- 2026-01-05 03:24:34
Edit Download
3.93 KB lrw-r--r-- 2026-01-05 03:24:34
Edit Download
47.49 KB lrw-r--r-- 2025-12-22 21:14:38
Edit Download
9.15 KB lrw-r--r-- 2026-03-03 03:54:46
Edit Download
14.07 KB lrw-r--r-- 2026-05-08 11:24:44
Edit Download
25.51 KB lrw-r--r-- 2025-09-06 23:47:36
Edit Download
198.13 KB lrw-r--r-- 2026-05-13 04:20:44
Edit Download
56.61 KB lrw-r--r-- 2026-01-05 03:41:32
Edit Download
10.46 KB lrw-r--r-- 2025-01-22 17:48:26
Edit Download
10.95 KB lrw-r--r-- 2024-10-13 16:09:12
Edit Download
29.26 KB lrw-r--r-- 2026-02-27 21:18:40
Edit Download
70.89 KB lrw-r--r-- 2026-03-11 19:01:46
Edit Download
35.13 KB lrw-r--r-- 2026-02-24 04:33:36
Edit Download
16.69 KB lrw-r--r-- 2026-01-27 23:07:42
Edit Download
2.59 KB lrw-r--r-- 2025-12-07 02:16:34
Edit Download
39.95 KB lrw-r--r-- 2026-03-02 07:11:52
Edit Download
70.54 KB lrw-r--r-- 2026-05-13 04:20:44
Edit Download
15.54 KB lrw-r--r-- 2026-01-05 14:04:58
Edit Download
7.33 KB lrw-r--r-- 2023-02-21 14:39:20
Edit Download
253 B lrw-r--r-- 2024-09-27 16:28:14
Edit Download
7.96 KB lrw-r--r-- 2024-10-22 07:16:16
Edit Download
3.23 KB lrw-r--r-- 2025-07-30 20:03:30
Edit Download
969 B lrw-r--r-- 2024-09-30 19:50:20
Edit Download
16.25 KB lrw-r--r-- 2026-01-09 02:28:52
Edit Download
7.10 KB lrw-r--r-- 2026-01-05 03:58:26
Edit Download
12.95 KB lrw-r--r-- 2025-09-03 09:18:32
Edit Download
6.53 KB lrw-r--r-- 2023-06-22 11:57:24
Edit Download
3.43 KB lrw-r--r-- 2026-03-10 10:24:48
Edit Download
5.84 KB lrw-r--r-- 2023-06-22 11:36:26
Edit Download
1.97 KB lrw-r--r-- 2022-12-15 19:32:18
Edit Download
4.14 KB lrw-r--r-- 2026-01-30 10:52:40
Edit Download
2.91 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
16.37 KB lrw-r--r-- 2026-01-10 03:03:50
Edit Download
40.67 KB lrw-r--r-- 2026-02-20 10:53:38
Edit Download
7.67 KB lrw-r--r-- 2026-03-20 13:41:02
Edit Download
20.22 KB lrw-r--r-- 2025-09-03 09:18:32
Edit Download
36.11 KB lrw-r--r-- 2025-08-26 18:05:30
Edit Download
17.01 KB lrw-r--r-- 2025-12-16 18:21:38
Edit Download
7.27 KB lrw-r--r-- 2024-02-27 20:38:16
Edit Download
6.62 KB lrw-r--r-- 2025-05-11 14:16:30
Edit Download
16.45 KB lrw-r--r-- 2026-02-13 15:52:44
Edit Download
1.79 KB lrw-r--r-- 2024-02-05 23:25:14
Edit Download
29.79 KB lrw-r--r-- 2026-01-06 04:08:04
Edit Download
6.67 KB lrw-r--r-- 2025-10-21 12:59:34
Edit Download
8.98 KB lrw-r--r-- 2025-06-18 17:39:52
Edit Download
19.25 KB lrw-r--r-- 2025-12-22 21:14:38
Edit Download
12.01 KB lrw-r--r-- 2024-09-13 19:12:16
Edit Download
17.11 KB lrw-r--r-- 2025-04-04 19:00:28
Edit Download
6.74 KB lrw-r--r-- 2024-03-06 03:05:12
Edit Download
30.86 KB lrw-r--r-- 2026-03-03 15:12:44
Edit Download
4.95 KB lrw-r--r-- 2026-01-06 03:36:58
Edit Download
4.25 KB lrw-r--r-- 2025-10-01 10:23:28
Edit Download
24.59 KB lrw-r--r-- 2026-01-11 04:50:42
Edit Download
29.95 KB lrw-r--r-- 2026-01-28 18:55:42
Edit Download
6.33 KB lrw-r--r-- 2026-03-03 03:54:46
Edit Download
159.50 KB lrw-r--r-- 2026-03-18 19:03:50
Edit Download
6.72 KB lrw-r--r-- 2022-10-04 00:59:14
Edit Download
10.90 KB lrw-r--r-- 2026-01-07 14:48:04
Edit Download
4.80 KB lrw-r--r-- 2026-03-01 21:04:46
Edit Download
3.44 KB lrw-r--r-- 2026-03-01 21:04:46
Edit Download
11.18 KB lrw-r--r-- 2025-02-23 09:11:22
Edit Download
62.20 KB lrw-r--r-- 2025-11-25 00:00:36
Edit Download
2.46 KB lrw-r--r-- 2023-09-08 06:32:24
Edit Download
9.10 KB lrw-r--r-- 2025-12-23 19:20:32
Edit Download
39.65 KB lrw-r--r-- 2026-04-30 01:59:38
Edit Download
35.93 KB lrw-r--r-- 2026-05-19 09:24:44
Edit Download
7.15 KB lrw-r--r-- 2025-02-11 09:14:22
Edit Download
3.47 KB lrw-r--r-- 2025-09-16 19:47:32
Edit Download
1.87 KB lrw-r--r-- 2025-01-22 17:48:26
Edit Download
30.74 KB lrw-r--r-- 2025-12-22 21:14:38
Edit Download
7.28 KB lrw-r--r-- 2026-03-03 03:54:46
Edit Download
7.38 KB lrw-r--r-- 2025-11-23 03:08:30
Edit Download
13.04 KB lrw-r--r-- 2026-03-10 23:32:44
Edit Download
19.12 KB lrw-r--r-- 2025-06-16 14:08:32
Edit Download
18.12 KB lrw-r--r-- 2025-03-26 19:42:28
Edit Download
39.80 KB lrw-r--r-- 2025-12-22 21:14:38
Edit Download
5.14 KB lrw-r--r-- 2026-03-03 03:54:46
Edit Download
979 B lrw-r--r-- 2024-02-14 17:27:10
Edit Download
18.49 KB lrw-r--r-- 2026-03-10 09:43:18
Edit Download
10.24 KB lrw-r--r-- 2024-11-20 00:50:24
Edit Download
1.77 KB lrw-r--r-- 2024-06-04 08:55:14
Edit Download
34.86 KB lrw-r--r-- 2026-02-13 15:52:44
Edit Download
7.19 KB lrw-r--r-- 2024-06-06 05:02:16
Edit Download
169.57 KB lrw-r--r-- 2026-02-20 00:25:46
Edit Download
64.22 KB lrw-r--r-- 2026-03-19 11:15:38
Edit Download
27.95 KB lrw-r--r-- 2024-07-19 20:44:16
Edit Download
4.69 KB lrw-r--r-- 2025-02-18 20:32:22
Edit Download
2.88 KB lrw-r--r-- 2026-01-11 04:50:42
Edit Download
43.07 KB lrw-r--r-- 2026-01-11 04:50:42
Edit Download
2.25 KB lrw-r--r-- 2025-02-17 09:24:22
Edit Download
22.48 KB lrw-r--r-- 2026-03-03 03:54:46
Edit Download
13.01 KB lrw-r--r-- 2024-07-26 04:56:14
Edit Download
3.27 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
17.99 KB lrw-r--r-- 2026-03-12 21:25:20
Edit Download
209.98 KB lrw-r--r-- 2026-01-10 03:29:48
Edit Download
25.75 KB lrw-r--r-- 2026-01-06 04:08:04
Edit Download
115.86 KB lrw-r--r-- 2025-12-03 18:54:34
Edit Download
373 B lrw-r--r-- 2022-09-20 11:17:12
Edit Download
343 B lrw-r--r-- 2022-09-20 11:17:12
Edit Download
338 B lrw-r--r-- 2022-09-20 11:17:12
Edit Download
2.11 KB lrw-r--r-- 2026-03-24 10:19:52
Edit Download
100.79 KB lrw-r--r-- 2026-05-07 23:21:42
Edit Download
130.94 KB lrw-r--r-- 2026-03-10 09:43:18
Edit Download
19.10 KB lrw-r--r-- 2025-10-21 11:03:28
Edit Download
15.69 KB lrw-r--r-- 2026-01-09 09:47:48
Edit Download
23.52 KB lrw-r--r-- 2026-05-11 10:42:42
Edit Download
43.94 KB lrw-r--r-- 2026-02-13 18:26:40
Edit Download
400 B lrw-r--r-- 2022-06-17 08:20:14
Edit Download
11.10 KB lrw-r--r-- 2026-03-24 10:19:52
Edit Download
36.54 KB lrw-r--r-- 2026-05-13 00:29:46
Edit Download
2.24 KB lrw-r--r-- 2025-01-22 17:48:26
Edit Download
189.43 KB lrw-r--r-- 2026-03-12 21:24:40
Edit Download
338 B lrw-r--r-- 2022-06-17 08:20:14
Edit Download
37.99 KB lrw-r--r-- 2026-02-15 21:18:44
Edit Download
4.00 KB lrw-r--r-- 2026-01-06 03:36:58
Edit Download
86.44 KB lrw-r--r-- 2026-07-26 21:24:25
Edit Download
5.38 KB lrw-r--r-- 2024-03-04 10:41:10
Edit Download
3.05 KB lrw-r--r-- 2025-01-22 17:48:26
Edit Download
2.61 KB lrw-r--r-- 2020-01-28 22:45:18
Edit Download
1.16 KB lrw-r--r-- 2020-01-28 22:45:18
Edit Download
4.04 KB lrw-r--r-- 2024-03-04 10:41:10
Edit Download
3.71 KB lrw-r--r-- 2020-01-28 22:45:18
Edit Download
24.60 KB lrw-r--r-- 2026-01-28 20:43:42
Edit Download
9.56 KB lrw-r--r-- 2026-02-12 08:49:42
Edit Download
346.38 KB lrw-r--r-- 2026-03-06 16:02:46
Edit Download
283.52 KB lrw-r--r-- 2026-04-15 03:45:38
Edit Download
20.01 KB lrw-r--r-- 2026-05-19 09:24:44
Edit Download
8.45 KB lrw-r--r-- 2025-12-22 18:45:32
Edit Download
170.83 KB lrw-r--r-- 2026-05-19 09:24:44
Edit Download
20.29 KB lrw-r--r-- 2026-02-10 13:20:52
Edit Download
26.62 KB lrw-r--r-- 2026-05-07 18:23:44
Edit Download
5.72 KB lrw-r--r-- 2025-02-24 11:43:24
Edit Download
4.63 KB lrw-r--r-- 2023-07-10 19:38:26
Edit Download
80.64 KB lrw-r--r-- 2026-03-10 10:28:40
Edit Download
69.74 KB lrw-r--r-- 2026-05-07 18:23:44
Edit Download
156.39 KB lrw-r--r-- 2026-03-18 14:56:50
Edit Download
55.15 KB lrw-r--r-- 2026-02-28 17:59:46
Edit Download
162 B lrw-r--r-- 2019-10-08 14:19:04
Edit Download
61.79 KB lrw-r--r-- 2026-03-20 15:11:54
Edit Download
218.55 KB lrw-r--r-- 2026-03-20 15:11:54
Edit Download
65.17 KB lrw-r--r-- 2026-02-03 17:31:46
Edit Download
25.71 KB lrw-r--r-- 2026-03-12 21:25:20
Edit Download
4.81 KB lrw-r--r-- 2024-06-13 17:50:14
Edit Download
6.48 KB lrw-r--r-- 2023-02-23 23:23:20
Edit Download
21.24 KB lrw-r--r-- 2026-03-12 21:25:20
Edit Download
2.79 KB lrw-r--r-- 2025-10-17 14:14:32
Edit Download
89.69 KB lrw-r--r-- 2025-10-27 14:35:36
Edit Download
19.57 KB lrw-r--r-- 2026-03-18 09:00:42
Edit Download
3.69 KB lrw-r--r-- 2023-05-02 08:26:24
Edit Download
4.11 KB lrw-r--r-- 2025-08-27 10:42:30
Edit Download
40.75 KB lrw-r--r-- 2026-02-11 20:11:46
Edit Download
25.38 KB lrw-r--r-- 2025-01-22 17:48:26
Edit Download
43.23 KB lrw-r--r-- 2026-03-10 10:34:44
Edit Download
102.62 KB lrw-r--r-- 2026-05-08 12:59:44
Edit Download
6.18 KB lrw-r--r-- 2025-02-03 17:52:24
Edit Download
124.57 KB lrw-r--r-- 2026-03-15 20:51:42
Edit Download
38.03 KB lrw-r--r-- 2026-07-28 06:48:35
Edit Download
6.90 KB lrw-r--r-- 2026-01-10 03:29:48
Edit Download
67.01 KB lrw-r--r-- 2026-02-15 21:18:44
Edit Download
10.62 KB lrw-r--r-- 2024-12-20 21:35:24
Edit Download
289.58 KB lrw-r--r-- 2026-05-08 12:59:44
Edit Download
36.23 KB lrw-r--r-- 2025-08-31 18:43:30
Edit Download
200 B lrw-r--r-- 2020-11-12 09:17:08
Edit Download
200 B lrw-r--r-- 2020-11-12 09:17:08
Edit Download
98.52 KB lrw-r--r-- 2026-05-08 12:59:44
Edit Download
29.99 KB lrw-r--r-- 2026-01-06 04:08:04
Edit Download
19.00 KB lrw-r--r-- 2026-01-06 03:57:56
Edit Download
5.06 KB lrw-r--r-- 2022-04-06 12:33:04
Edit Download
255 B lrw-r--r-- 2020-11-16 20:52:06
Edit Download
22.66 KB lrw-r--r-- 2025-09-03 09:18:32
Edit Download
159.30 KB lrw-r--r-- 2026-05-19 09:24:44
Edit Download
11.66 KB lrw-r--r-- 2026-05-19 09:24:44
Edit Download
258 B lrw-r--r-- 2020-02-06 04:33:12
Edit Download
23.47 KB lrw-r--r-- 2026-01-05 04:04:34
Edit Download
3.16 KB lrw-r--r-- 2021-05-15 14:38:06
Edit Download
8.40 KB lrw-r--r-- 2025-08-27 07:34:28
Edit Download
441 B lrw-r--r-- 2020-11-12 09:17:08
Edit Download
7.39 KB lrw-r--r-- 2024-05-03 01:47:12
Edit Download
172.99 KB lrw-r--r-- 2026-03-03 03:54:46
Edit Download
544 B lrw-r--r-- 2023-09-30 21:22:28
Edit Download
4.17 KB lrw-r--r-- 2026-03-10 19:11:48
Edit Download
35.96 KB lrw-r--r-- 2026-02-20 00:25:46
Edit Download
1.85 KB lrw-r--r-- 2026-01-05 10:16:10
Edit Download
2.82 KB lrw-r--r-- 2026-01-05 14:04:58
Edit Download
3.96 KB lrw-r--r-- 2026-01-11 04:36:50
Edit Download
8.83 KB lrw-r--r-- 2026-03-09 16:43:38
Edit Download
131.48 KB lrw-r--r-- 2026-03-03 10:26:46
Edit Download
37.38 KB lrw-r--r-- 2026-01-09 00:48:52
Edit Download
174.63 KB lrw-r--r-- 2026-02-25 14:29:46
Edit Download
7.09 KB lrw-r--r-- 2025-10-20 23:35:32
Edit Download
6.45 KB lrw-r--r-- 2026-02-07 04:06:44
Edit Download
1.08 KB lrw-r--r-- 2026-05-20 14:39:46
Edit Download
602 B lrw-r--r-- 2026-01-19 14:58:46
Edit Download
69.17 KB lrw-r--r-- 2026-03-11 19:01:46
Edit Download
445 B lrw-r--r-- 2022-07-21 19:45:12
Edit Download
799 B lrw-r--r-- 2025-01-22 17:48:26
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).