PHP 7.4.33
Preview: class-wp-term-query.php Size: 39.99 KB
/home/zcziejy/ryadselyen/class-wp-term-query.php
<?php

/**
 * Taxonomy API: WP_Term_Query class.
 *
 * @package WordPress
 * @subpackage Taxonomy
 * @since 4.6.0
 */

/**
 * Class used for querying terms.
 *
 * @since 4.6.0
 *
 * @see WP_Term_Query::__construct() for accepted arguments.
 */
#[AllowDynamicProperties]
class WP_Term_Query {

	/**
	 * SQL string used to perform database query.
	 *
	 * @since 4.6.0
	 * @var string
	 */
	public $request;

	/**
	 * Metadata query container.
	 *
	 * @since 4.6.0
	 * @var WP_Meta_Query A meta query instance.
	 */
	public $meta_query = false;

	/**
	 * Metadata query clauses.
	 *
	 * @since 4.6.0
	 * @var array
	 */
	protected $meta_query_clauses;

	/**
	 * SQL query clauses.
	 *
	 * @since 4.6.0
	 * @var array
	 */
	protected $sql_clauses = array(
		'select'  => '',
		'from'    => '',
		'where'   => array(),
		'orderby' => '',
		'limits'  => '',
	);

	/**
	 * Query vars set by the user.
	 *
	 * @since 4.6.0
	 * @var array
	 */
	public $query_vars;

	/**
	 * Default values for query vars.
	 *
	 * @since 4.6.0
	 * @var array
	 */
	public $query_var_defaults;

	/**
	 * List of terms located by the query.
	 *
	 * @since 4.6.0
	 * @var array
	 */
	public $terms;

	/**
	 * Constructor.
	 *
	 * Sets up the term query, based on the query vars passed.
	 *
	 * @since 4.6.0
	 * @since 4.6.0 Introduced 'term_taxonomy_id' parameter.
	 * @since 4.7.0 Introduced 'object_ids' parameter.
	 * @since 4.9.0 Added 'slug__in' support for 'orderby'.
	 * @since 5.1.0 Introduced the 'meta_compare_key' parameter.
	 * @since 5.3.0 Introduced the 'meta_type_key' parameter.
	 * @since 6.4.0 Introduced the 'cache_results' parameter.
	 *
	 * @param string|array $query {
	 *     Optional. Array or query string of term query parameters. Default empty.
	 *
	 *     @type string|string[] $taxonomy               Taxonomy name, or array of taxonomy names, to which results
	 *                                                   should be limited.
	 *     @type int|int[]       $object_ids             Object ID, or array of object IDs. Results will be
	 *                                                   limited to terms associated with these objects.
	 *     @type string          $orderby                Field(s) to order terms by. Accepts:
	 *                                                   - Term fields ('name', 'slug', 'term_group', 'term_id', 'id',
	 *                                                     'description', 'parent', 'term_order'). Unless `$object_ids`
	 *                                                     is not empty, 'term_order' is treated the same as 'term_id'.
	 *                                                   - 'count' to use the number of objects associated with the term.
	 *                                                   - 'include' to match the 'order' of the `$include` param.
	 *                                                   - 'slug__in' to match the 'order' of the `$slug` param.
	 *                                                   - 'meta_value'
	 *                                                   - 'meta_value_num'.
	 *                                                   - The value of `$meta_key`.
	 *                                                   - The array keys of `$meta_query`.
	 *                                                   - 'none' to omit the ORDER BY clause.
	 *                                                   Default 'name'.
	 *     @type string          $order                  Whether to order terms in ascending or descending order.
	 *                                                   Accepts 'ASC' (ascending) or 'DESC' (descending).
	 *                                                   Default 'ASC'.
	 *     @type bool|int        $hide_empty             Whether to hide terms not assigned to any posts. Accepts
	 *                                                   1|true or 0|false. Default 1|true.
	 *     @type int[]|string    $include                Array or comma/space-separated string of term IDs to include.
	 *                                                   Default empty array.
	 *     @type int[]|string    $exclude                Array or comma/space-separated string of term IDs to exclude.
	 *                                                   If `$include` is non-empty, `$exclude` is ignored.
	 *                                                   Default empty array.
	 *     @type int[]|string    $exclude_tree           Array or comma/space-separated string of term IDs to exclude
	 *                                                   along with all of their descendant terms. If `$include` is
	 *                                                   non-empty, `$exclude_tree` is ignored. Default empty array.
	 *     @type int|string      $number                 Maximum number of terms to return. Accepts ''|0 (all) or any
	 *                                                   positive number. Default ''|0 (all). Note that `$number` may
	 *                                                   not return accurate results when coupled with `$object_ids`.
	 *                                                   See #41796 for details.
	 *     @type int             $offset                 The number by which to offset the terms query. Default empty.
	 *     @type string          $fields                 Term fields to query for. Accepts:
	 *                                                   - 'all' Returns an array of complete term objects (`WP_Term[]`).
	 *                                                   - 'all_with_object_id' Returns an array of term objects
	 *                                                     with the 'object_id' param (`WP_Term[]`). Works only
	 *                                                     when the `$object_ids` parameter is populated.
	 *                                                   - 'ids' Returns an array of term IDs (`int[]`).
	 *                                                   - 'tt_ids' Returns an array of term taxonomy IDs (`int[]`).
	 *                                                   - 'names' Returns an array of term names (`string[]`).
	 *                                                   - 'slugs' Returns an array of term slugs (`string[]`).
	 *                                                   - 'count' Returns the number of matching terms (`int`).
	 *                                                   - 'id=>parent' Returns an associative array of parent term IDs,
	 *                                                      keyed by term ID (`int[]`).
	 *                                                   - 'id=>name' Returns an associative array of term names,
	 *                                                      keyed by term ID (`string[]`).
	 *                                                   - 'id=>slug' Returns an associative array of term slugs,
	 *                                                      keyed by term ID (`string[]`).
	 *                                                   Default 'all'.
	 *     @type string|string[] $name                   Name or array of names to return term(s) for.
	 *                                                   Default empty.
	 *     @type string|string[] $slug                   Slug or array of slugs to return term(s) for.
	 *                                                   Default empty.
	 *     @type int|int[]       $term_taxonomy_id       Term taxonomy ID, or array of term taxonomy IDs,
	 *                                                   to match when querying terms.
	 *     @type bool            $hierarchical           Whether to include terms that have non-empty descendants
	 *                                                   (even if `$hide_empty` is set to true). Default true.
	 *     @type string          $search                 Search criteria to match terms. Will be SQL-formatted with
	 *                                                   wildcards before and after. Default empty.
	 *     @type string          $name__like             Retrieve terms with criteria by which a term is LIKE
	 *                                                   `$name__like`. Default empty.
	 *     @type string          $description__like      Retrieve terms where the description is LIKE
	 *                                                   `$description__like`. Default empty.
	 *     @type bool            $pad_counts             Whether to pad the quantity of a term's children in the
	 *                                                   quantity of each term's "count" object variable.
	 *                                                   Default false.
	 *     @type string          $get                    Whether to return terms regardless of ancestry or whether the
	 *                                                   terms are empty. Accepts 'all' or '' (disabled).
	 *                                                   Default ''.
	 *     @type int             $child_of               Term ID to retrieve child terms of. If multiple taxonomies
	 *                                                   are passed, `$child_of` is ignored. Default 0.
	 *     @type int             $parent                 Parent term ID to retrieve direct-child terms of.
	 *                                                   Default empty.
	 *     @type bool            $childless              True to limit results to terms that have no children.
	 *                                                   This parameter has no effect on non-hierarchical taxonomies.
	 *                                                   Default false.
	 *     @type string          $cache_domain           Unique cache key to be produced when this query is stored in
	 *                                                   an object cache. Default 'core'.
	 *     @type bool            $cache_results          Whether to cache term information. Default true.
	 *     @type bool            $update_term_meta_cache Whether to prime meta caches for matched terms. Default true.
	 *     @type string|string[] $meta_key               Meta key or keys to filter by.
	 *     @type string|string[] $meta_value             Meta value or values to filter by.
	 *     @type string          $meta_compare           MySQL operator used for comparing the meta value.
	 *                                                   See WP_Meta_Query::__construct() for accepted values and default value.
	 *     @type string          $meta_compare_key       MySQL operator used for comparing the meta key.
	 *                                                   See WP_Meta_Query::__construct() for accepted values and default value.
	 *     @type string          $meta_type              MySQL data type that the meta_value column will be CAST to for comparisons.
	 *                                                   See WP_Meta_Query::__construct() for accepted values and default value.
	 *     @type string          $meta_type_key          MySQL data type that the meta_key column will be CAST to for comparisons.
	 *                                                   See WP_Meta_Query::__construct() for accepted values and default value.
	 *     @type array           $meta_query             An associative array of WP_Meta_Query arguments.
	 *                                                   See WP_Meta_Query::__construct() for accepted values.
	 * }
	 */
	public function __construct( $query = '' ) {
		$this->query_var_defaults = array(
			'taxonomy'               => null,
			'object_ids'             => null,
			'orderby'                => 'name',
			'order'                  => 'ASC',
			'hide_empty'             => true,
			'include'                => array(),
			'exclude'                => array(),
			'exclude_tree'           => array(),
			'number'                 => '',
			'offset'                 => '',
			'fields'                 => 'all',
			'name'                   => '',
			'slug'                   => '',
			'term_taxonomy_id'       => '',
			'hierarchical'           => true,
			'search'                 => '',
			'name__like'             => '',
			'description__like'      => '',
			'pad_counts'             => false,
			'get'                    => '',
			'child_of'               => 0,
			'parent'                 => '',
			'childless'              => false,
			'cache_domain'           => 'core',
			'cache_results'          => true,
			'update_term_meta_cache' => true,
			'meta_query'             => '',
			'meta_key'               => '',
			'meta_value'             => '',
			'meta_type'              => '',
			'meta_compare'           => '',
		);

		if ( ! empty( $query ) ) {
			$this->query( $query );
		}
	}

	/**
	 * Parse arguments passed to the term query with default query parameters.
	 *
	 * @since 4.6.0
	 *
	 * @param string|array $query WP_Term_Query arguments. See WP_Term_Query::__construct() for accepted arguments.
	 */
	public function parse_query( $query = '' ) {
		if ( empty( $query ) ) {
			$query = $this->query_vars;
		}

		$taxonomies = isset( $query['taxonomy'] ) ? (array) $query['taxonomy'] : null;

		/**
		 * Filters the terms query default arguments.
		 *
		 * Use {@see 'get_terms_args'} to filter the passed arguments.
		 *
		 * @since 4.4.0
		 *
		 * @param array    $defaults   An array of default get_terms() arguments.
		 * @param string[] $taxonomies An array of taxonomy names.
		 */
		$this->query_var_defaults = apply_filters( 'get_terms_defaults', $this->query_var_defaults, $taxonomies );

		$query = wp_parse_args( $query, $this->query_var_defaults );

		$query['number'] = absint( $query['number'] );
		$query['offset'] = absint( $query['offset'] );

		// 'parent' overrides 'child_of'.
		if ( 0 < (int) $query['parent'] ) {
			$query['child_of'] = false;
		}

		if ( 'all' === $query['get'] ) {
			$query['childless']    = false;
			$query['child_of']     = 0;
			$query['hide_empty']   = 0;
			$query['hierarchical'] = false;
			$query['pad_counts']   = false;
		}

		$query['taxonomy'] = $taxonomies;

		$this->query_vars = $query;

		/**
		 * Fires after term query vars have been parsed.
		 *
		 * @since 4.6.0
		 *
		 * @param WP_Term_Query $query Current instance of WP_Term_Query.
		 */
		do_action( 'parse_term_query', $this );
	}

	/**
	 * Sets up the query and retrieves the results.
	 *
	 * The return type varies depending on the value passed to `$args['fields']`. See
	 * WP_Term_Query::get_terms() for details.
	 *
	 * @since 4.6.0
	 *
	 * @param string|array $query Array or URL query string of parameters.
	 * @return WP_Term[]|int[]|string[]|string Array of terms, or number of terms as numeric string
	 *                                         when 'count' is passed to `$args['fields']`.
	 */
	public function query( $query ) {
		$this->query_vars = wp_parse_args( $query );
		return $this->get_terms();
	}

	/**
	 * Retrieves the query results.
	 *
	 * The return type varies depending on the value passed to `$args['fields']`.
	 *
	 * The following will result in an array of `WP_Term` objects being returned:
	 *
	 *   - 'all'
	 *   - 'all_with_object_id'
	 *
	 * The following will result in a numeric string being returned:
	 *
	 *   - 'count'
	 *
	 * The following will result in an array of text strings being returned:
	 *
	 *   - 'id=>name'
	 *   - 'id=>slug'
	 *   - 'names'
	 *   - 'slugs'
	 *
	 * The following will result in an array of numeric strings being returned:
	 *
	 *   - 'id=>parent'
	 *
	 * The following will result in an array of integers being returned:
	 *
	 *   - 'ids'
	 *   - 'tt_ids'
	 *
	 * @since 4.6.0
	 *
	 * @global wpdb $wpdb WordPress database abstraction object.
	 *
	 * @return WP_Term[]|int[]|string[]|string Array of terms, or number of terms as numeric string
	 *                                         when 'count' is passed to `$args['fields']`.
	 */
	public function get_terms() {
		global $wpdb;

		$this->parse_query( $this->query_vars );
		$args = &$this->query_vars;

		// Set up meta_query so it's available to 'pre_get_terms'.
		$this->meta_query = new WP_Meta_Query();
		$this->meta_query->parse_query_vars( $args );

		/**
		 * Fires before terms are retrieved.
		 *
		 * @since 4.6.0
		 *
		 * @param WP_Term_Query $query Current instance of WP_Term_Query (passed by reference).
		 */
		do_action_ref_array( 'pre_get_terms', array( &$this ) );

		$taxonomies = (array) $args['taxonomy'];

		// Save queries by not crawling the tree in the case of multiple taxes or a flat tax.
		$has_hierarchical_tax = false;
		if ( $taxonomies ) {
			foreach ( $taxonomies as $_tax ) {
				if ( is_taxonomy_hierarchical( $_tax ) ) {
					$has_hierarchical_tax = true;
				}
			}
		} else {
			// When no taxonomies are provided, assume we have to descend the tree.
			$has_hierarchical_tax = true;
		}

		if ( ! $has_hierarchical_tax ) {
			$args['hierarchical'] = false;
			$args['pad_counts']   = false;
		}

		// 'parent' overrides 'child_of'.
		if ( 0 < (int) $args['parent'] ) {
			$args['child_of'] = false;
		}

		if ( 'all' === $args['get'] ) {
			$args['childless']    = false;
			$args['child_of']     = 0;
			$args['hide_empty']   = 0;
			$args['hierarchical'] = false;
			$args['pad_counts']   = false;
		}

		/**
		 * Filters the terms query arguments.
		 *
		 * @since 3.1.0
		 *
		 * @param array    $args       An array of get_terms() arguments.
		 * @param string[] $taxonomies An array of taxonomy names.
		 */
		$args = apply_filters( 'get_terms_args', $args, $taxonomies );

		// Avoid the query if the queried parent/child_of term has no descendants.
		$child_of = $args['child_of'];
		$parent   = $args['parent'];

		if ( $child_of ) {
			$_parent = $child_of;
		} elseif ( $parent ) {
			$_parent = $parent;
		} else {
			$_parent = false;
		}

		if ( $_parent ) {
			$in_hierarchy = false;
			foreach ( $taxonomies as $_tax ) {
				$hierarchy = _get_term_hierarchy( $_tax );

				if ( isset( $hierarchy[ $_parent ] ) ) {
					$in_hierarchy = true;
				}
			}

			if ( ! $in_hierarchy ) {
				if ( 'count' === $args['fields'] ) {
					return 0;
				} else {
					$this->terms = array();
					return $this->terms;
				}
			}
		}

		// 'term_order' is a legal sort order only when joining the relationship table.
		$_orderby = $this->query_vars['orderby'];
		if ( 'term_order' === $_orderby && empty( $this->query_vars['object_ids'] ) ) {
			$_orderby = 'term_id';
		}

		$orderby = $this->parse_orderby( $_orderby );

		if ( $orderby ) {
			$orderby = "ORDER BY $orderby";
		}

		$order = $this->parse_order( $this->query_vars['order'] );

		if ( $taxonomies ) {
			$this->sql_clauses['where']['taxonomy'] =
				"tt.taxonomy IN ('" . implode( "', '", array_map( 'esc_sql', $taxonomies ) ) . "')";
		}

		if ( empty( $args['exclude'] ) ) {
			$args['exclude'] = array();
		}

		if ( empty( $args['include'] ) ) {
			$args['include'] = array();
		}

		$exclude      = $args['exclude'];
		$exclude_tree = $args['exclude_tree'];
		$include      = $args['include'];

		if ( ! empty( $include ) ) {
			$exclude      = '';
			$exclude_tree = '';
			$inclusions   = implode( ',', wp_parse_id_list( $include ) );

			$this->sql_clauses['where']['inclusions'] = 't.term_id IN ( ' . $inclusions . ' )';
		}

		$exclusions = array();
		if ( ! empty( $exclude_tree ) ) {
			$exclude_tree      = wp_parse_id_list( $exclude_tree );
			$excluded_children = $exclude_tree;

			foreach ( $exclude_tree as $extrunk ) {
				$excluded_children = array_merge(
					$excluded_children,
					(array) get_terms(
						array(
							'taxonomy'   => reset( $taxonomies ),
							'child_of'   => (int) $extrunk,
							'fields'     => 'ids',
							'hide_empty' => 0,
						)
					)
				);
			}

			$exclusions = array_merge( $excluded_children, $exclusions );
		}

		if ( ! empty( $exclude ) ) {
			$exclusions = array_merge( wp_parse_id_list( $exclude ), $exclusions );
		}

		// 'childless' terms are those without an entry in the flattened term hierarchy.
		$childless = (bool) $args['childless'];
		if ( $childless ) {
			foreach ( $taxonomies as $_tax ) {
				$term_hierarchy = _get_term_hierarchy( $_tax );
				$exclusions     = array_merge( array_keys( $term_hierarchy ), $exclusions );
			}
		}

		if ( ! empty( $exclusions ) ) {
			$exclusions = 't.term_id NOT IN (' . implode( ',', array_map( 'intval', $exclusions ) ) . ')';
		} else {
			$exclusions = '';
		}

		/**
		 * Filters the terms to exclude from the terms query.
		 *
		 * @since 2.3.0
		 *
		 * @param string   $exclusions `NOT IN` clause of the terms query.
		 * @param array    $args       An array of terms query arguments.
		 * @param string[] $taxonomies An array of taxonomy names.
		 */
		$exclusions = apply_filters( 'list_terms_exclusions', $exclusions, $args, $taxonomies );

		if ( ! empty( $exclusions ) ) {
			// Strip leading 'AND'. Must do string manipulation here for backward compatibility with filter.
			$this->sql_clauses['where']['exclusions'] = preg_replace( '/^\s*AND\s*/', '', $exclusions );
		}

		if ( '' === $args['name'] ) {
			$args['name'] = array();
		} else {
			$args['name'] = (array) $args['name'];
		}

		if ( ! empty( $args['name'] ) ) {
			$names = $args['name'];

			foreach ( $names as &$_name ) {
				// `sanitize_term_field()` returns slashed data.
				$_name = stripslashes( sanitize_term_field( 'name', $_name, 0, reset( $taxonomies ), 'db' ) );
			}

			$this->sql_clauses['where']['name'] = "t.name IN ('" . implode( "', '", array_map( 'esc_sql', $names ) ) . "')";
		}

		if ( '' === $args['slug'] ) {
			$args['slug'] = array();
		} else {
			$args['slug'] = array_map( 'sanitize_title', (array) $args['slug'] );
		}

		if ( ! empty( $args['slug'] ) ) {
			$slug = implode( "', '", $args['slug'] );

			$this->sql_clauses['where']['slug'] = "t.slug IN ('" . $slug . "')";
		}

		if ( '' === $args['term_taxonomy_id'] ) {
			$args['term_taxonomy_id'] = array();
		} else {
			$args['term_taxonomy_id'] = array_map( 'intval', (array) $args['term_taxonomy_id'] );
		}

		if ( ! empty( $args['term_taxonomy_id'] ) ) {
			$tt_ids = implode( ',', $args['term_taxonomy_id'] );

			$this->sql_clauses['where']['term_taxonomy_id'] = "tt.term_taxonomy_id IN ({$tt_ids})";
		}

		if ( ! empty( $args['name__like'] ) ) {
			$this->sql_clauses['where']['name__like'] = $wpdb->prepare(
				't.name LIKE %s',
				'%' . $wpdb->esc_like( $args['name__like'] ) . '%'
			);
		}

		if ( ! empty( $args['description__like'] ) ) {
			$this->sql_clauses['where']['description__like'] = $wpdb->prepare(
				'tt.description LIKE %s',
				'%' . $wpdb->esc_like( $args['description__like'] ) . '%'
			);
		}

		if ( '' === $args['object_ids'] ) {
			$args['object_ids'] = array();
		} else {
			$args['object_ids'] = array_map( 'intval', (array) $args['object_ids'] );
		}

		if ( ! empty( $args['object_ids'] ) ) {
			$object_ids = implode( ', ', $args['object_ids'] );

			$this->sql_clauses['where']['object_ids'] = "tr.object_id IN ($object_ids)";
		}

		/*
		 * When querying for object relationships, the 'count > 0' check
		 * added by 'hide_empty' is superfluous.
		 */
		if ( ! empty( $args['object_ids'] ) ) {
			$args['hide_empty'] = false;
		}

		if ( '' !== $parent ) {
			$parent                               = (int) $parent;
			$this->sql_clauses['where']['parent'] = "tt.parent = '$parent'";
		}

		$hierarchical = $args['hierarchical'];
		if ( 'count' === $args['fields'] ) {
			$hierarchical = false;
		}
		if ( $args['hide_empty'] && ! $hierarchical ) {
			$this->sql_clauses['where']['count'] = 'tt.count > 0';
		}

		$number = $args['number'];
		$offset = $args['offset'];

		// Don't limit the query results when we have to descend the family tree.
		if ( $number && ! $hierarchical && ! $child_of && '' === $parent ) {
			if ( $offset ) {
				$limits = 'LIMIT ' . $offset . ',' . $number;
			} else {
				$limits = 'LIMIT ' . $number;
			}
		} else {
			$limits = '';
		}

		if ( ! empty( $args['search'] ) ) {
			$this->sql_clauses['where']['search'] = $this->get_search_sql( $args['search'] );
		}

		// Meta query support.
		$join     = '';
		$distinct = '';

		// Reparse meta_query query_vars, in case they were modified in a 'pre_get_terms' callback.
		$this->meta_query->parse_query_vars( $this->query_vars );
		$mq_sql       = $this->meta_query->get_sql( 'term', 't', 'term_id' );
		$meta_clauses = $this->meta_query->get_clauses();

		if ( ! empty( $meta_clauses ) ) {
			$join .= $mq_sql['join'];

			// Strip leading 'AND'.
			$this->sql_clauses['where']['meta_query'] = preg_replace( '/^\s*AND\s*/', '', $mq_sql['where'] );

			$distinct .= 'DISTINCT';

		}

		$selects = array();
		switch ( $args['fields'] ) {
			case 'count':
				$orderby = '';
				$order   = '';
				$selects = array( 'COUNT(*)' );
				break;
			default:
				$selects = array( 't.term_id' );
				if ( 'all_with_object_id' === $args['fields'] && ! empty( $args['object_ids'] ) ) {
					$selects[] = 'tr.object_id';
				}
				break;
		}

		$_fields = $args['fields'];

		/**
		 * Filters the fields to select in the terms query.
		 *
		 * Field lists modified using this filter will only modify the term fields returned
		 * by the function when the `$fields` parameter set to 'count' or 'all'. In all other
		 * cases, the term fields in the results array will be determined by the `$fields`
		 * parameter alone.
		 *
		 * Use of this filter can result in unpredictable behavior, and is not recommended.
		 *
		 * @since 2.8.0
		 *
		 * @param string[] $selects    An array of fields to select for the terms query.
		 * @param array    $args       An array of term query arguments.
		 * @param string[] $taxonomies An array of taxonomy names.
		 */
		$fields = implode( ', ', apply_filters( 'get_terms_fields', $selects, $args, $taxonomies ) );

		$join .= " INNER JOIN $wpdb->term_taxonomy AS tt ON t.term_id = tt.term_id";

		if ( ! empty( $this->query_vars['object_ids'] ) ) {
			$join    .= " INNER JOIN {$wpdb->term_relationships} AS tr ON tr.term_taxonomy_id = tt.term_taxonomy_id";
			$distinct = 'DISTINCT';
		}

		$where = implode( ' AND ', $this->sql_clauses['where'] );

		$pieces = array( 'fields', 'join', 'where', 'distinct', 'orderby', 'order', 'limits' );

		/**
		 * Filters the terms query SQL clauses.
		 *
		 * @since 3.1.0
		 *
		 * @param string[] $clauses {
		 *     Associative array of the clauses for the query.
		 *
		 *     @type string $fields   The SELECT clause of the query.
		 *     @type string $join     The JOIN clause of the query.
		 *     @type string $where    The WHERE clause of the query.
		 *     @type string $distinct The DISTINCT clause of the query.
		 *     @type string $orderby  The ORDER BY clause of the query.
		 *     @type string $order    The ORDER clause of the query.
		 *     @type string $limits   The LIMIT clause of the query.
		 * }
		 * @param string[] $taxonomies An array of taxonomy names.
		 * @param array    $args       An array of term query arguments.
		 */
		$clauses = apply_filters( 'terms_clauses', compact( $pieces ), $taxonomies, $args );

		$fields   = isset( $clauses['fields'] ) ? $clauses['fields'] : '';
		$join     = isset( $clauses['join'] ) ? $clauses['join'] : '';
		$where    = isset( $clauses['where'] ) ? $clauses['where'] : '';
		$distinct = isset( $clauses['distinct'] ) ? $clauses['distinct'] : '';
		$orderby  = isset( $clauses['orderby'] ) ? $clauses['orderby'] : '';
		$order    = isset( $clauses['order'] ) ? $clauses['order'] : '';
		$limits   = isset( $clauses['limits'] ) ? $clauses['limits'] : '';

		$fields_is_filtered = implode( ', ', $selects ) !== $fields;

		if ( $where ) {
			$where = "WHERE $where";
		}

		$this->sql_clauses['select']  = "SELECT $distinct $fields";
		$this->sql_clauses['from']    = "FROM $wpdb->terms AS t $join";
		$this->sql_clauses['orderby'] = $orderby ? "$orderby $order" : '';
		$this->sql_clauses['limits']  = $limits;

		// Beginning of the string is on a new line to prevent leading whitespace. See https://core.trac.wordpress.org/ticket/56841.
		$this->request =
			"{$this->sql_clauses['select']}
			 {$this->sql_clauses['from']}
			 {$where}
			 {$this->sql_clauses['orderby']}
			 {$this->sql_clauses['limits']}";

		$this->terms = null;

		/**
		 * Filters the terms array before the query takes place.
		 *
		 * Return a non-null value to bypass WordPress' default term queries.
		 *
		 * @since 5.3.0
		 *
		 * @param array|null    $terms Return an array of term data to short-circuit WP's term query,
		 *                             or null to allow WP queries to run normally.
		 * @param WP_Term_Query $query The WP_Term_Query instance, passed by reference.
		 */
		$this->terms = apply_filters_ref_array( 'terms_pre_query', array( $this->terms, &$this ) );

		if ( null !== $this->terms ) {
			return $this->terms;
		}

		if ( $args['cache_results'] ) {
			$cache_key    = $this->generate_cache_key( $args, $this->request );
			$last_changed = wp_cache_get_last_changed( 'terms' );
			$cache        = wp_cache_get_salted( $cache_key, 'term-queries', $last_changed );

			if ( false !== $cache ) {
				if ( 'ids' === $_fields ) {
					$cache = array_map( 'intval', $cache );
				} elseif ( 'count' !== $_fields ) {
					if ( ( 'all_with_object_id' === $_fields && ! empty( $args['object_ids'] ) )
					|| ( 'all' === $_fields && $args['pad_counts'] || $fields_is_filtered )
					) {
						$term_ids = wp_list_pluck( $cache, 'term_id' );
					} else {
						$term_ids = array_map( 'intval', $cache );
					}

					_prime_term_caches( $term_ids, $args['update_term_meta_cache'] );

					$term_objects = $this->populate_terms( $cache );
					$cache        = $this->format_terms( $term_objects, $_fields );
				}

				$this->terms = $cache;
				return $this->terms;
			}
		}

		if ( 'count' === $_fields ) {
			$count = $wpdb->get_var( $this->request ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
			if ( $args['cache_results'] ) {
				wp_cache_set_salted( $cache_key, $count, 'term-queries', $last_changed );
			}
			return $count;
		}

		$terms = $wpdb->get_results( $this->request ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared

		if ( empty( $terms ) ) {
			$this->terms = array();

			if ( $args['cache_results'] ) {
				wp_cache_set_salted( $cache_key, $this->terms, 'term-queries', $last_changed );
			}

			return $this->terms;
		}

		$term_ids = wp_list_pluck( $terms, 'term_id' );
		_prime_term_caches( $term_ids, false );
		$term_objects = $this->populate_terms( $terms );

		if ( $child_of ) {
			foreach ( $taxonomies as $_tax ) {
				$children = _get_term_hierarchy( $_tax );
				if ( ! empty( $children ) ) {
					$term_objects = _get_term_children( $child_of, $term_objects, $_tax );
				}
			}
		}

		// Update term counts to include children.
		if ( $args['pad_counts'] && 'all' === $_fields ) {
			foreach ( $taxonomies as $_tax ) {
				_pad_term_counts( $term_objects, $_tax );
			}
		}

		// Make sure we show empty categories that have children.
		if ( $hierarchical && $args['hide_empty'] && is_array( $term_objects ) ) {
			foreach ( $term_objects as $k => $term ) {
				if ( ! $term->count ) {
					$children = get_term_children( $term->term_id, $term->taxonomy );

					if ( is_array( $children ) ) {
						foreach ( $children as $child_id ) {
							$child = get_term( $child_id, $term->taxonomy );

							if ( $child instanceof WP_Term && $child->count ) {
								continue 2;
							}
						}
					}

					// It really is empty.
					unset( $term_objects[ $k ] );
				}
			}
		}

		// Hierarchical queries are not limited, so 'offset' and 'number' must be handled now.
		if ( $hierarchical && $number && is_array( $term_objects ) ) {
			if ( $offset >= count( $term_objects ) ) {
				$term_objects = array();
			} else {
				$term_objects = array_slice( $term_objects, $offset, $number, true );
			}
		}

		// Prime termmeta cache.
		if ( $args['update_term_meta_cache'] ) {
			$term_ids = wp_list_pluck( $term_objects, 'term_id' );
			wp_lazyload_term_meta( $term_ids );
		}

		if ( 'all_with_object_id' === $_fields && ! empty( $args['object_ids'] ) ) {
			$term_cache = array();
			foreach ( $term_objects as $term ) {
				$object            = new stdClass();
				$object->term_id   = $term->term_id;
				$object->object_id = $term->object_id;
				$term_cache[]      = $object;
			}
		} elseif ( 'all' === $_fields && $args['pad_counts'] ) {
			$term_cache = array();
			foreach ( $term_objects as $term ) {
				$object          = new stdClass();
				$object->term_id = $term->term_id;
				$object->count   = $term->count;
				$term_cache[]    = $object;
			}
		} elseif ( $fields_is_filtered ) {
			$term_cache = $term_objects;
		} else {
			$term_cache = wp_list_pluck( $term_objects, 'term_id' );
		}

		if ( $args['cache_results'] ) {
			wp_cache_set_salted( $cache_key, $term_cache, 'term-queries', $last_changed );
		}

		$this->terms = $this->format_terms( $term_objects, $_fields );

		return $this->terms;
	}

	/**
	 * Parse and sanitize 'orderby' keys passed to the term query.
	 *
	 * @since 4.6.0
	 *
	 * @param string $orderby_raw Alias for the field to order by.
	 * @return string|false Value to used in the ORDER clause. False otherwise.
	 */
	protected function parse_orderby( $orderby_raw ) {
		$_orderby           = strtolower( $orderby_raw );
		$maybe_orderby_meta = false;

		if ( in_array( $_orderby, array( 'term_id', 'name', 'slug', 'term_group' ), true ) ) {
			$orderby = "t.$_orderby";
		} elseif ( in_array( $_orderby, array( 'count', 'parent', 'taxonomy', 'term_taxonomy_id', 'description' ), true ) ) {
			$orderby = "tt.$_orderby";
		} elseif ( 'term_order' === $_orderby ) {
			$orderby = 'tr.term_order';
		} elseif ( 'include' === $_orderby && ! empty( $this->query_vars['include'] ) ) {
			$include = implode( ',', wp_parse_id_list( $this->query_vars['include'] ) );
			$orderby = "FIELD( t.term_id, $include )";
		} elseif ( 'slug__in' === $_orderby && ! empty( $this->query_vars['slug'] ) && is_array( $this->query_vars['slug'] ) ) {
			$slugs   = implode( "', '", array_map( 'sanitize_title_for_query', $this->query_vars['slug'] ) );
			$orderby = "FIELD( t.slug, '" . $slugs . "')";
		} elseif ( 'none' === $_orderby ) {
			$orderby = '';
		} elseif ( empty( $_orderby ) || 'id' === $_orderby || 'term_id' === $_orderby ) {
			$orderby = 't.term_id';
		} else {
			$orderby = 't.name';

			// This may be a value of orderby related to meta.
			$maybe_orderby_meta = true;
		}

		/**
		 * Filters the ORDERBY clause of the terms query.
		 *
		 * @since 2.8.0
		 *
		 * @param string   $orderby    `ORDERBY` clause of the terms query.
		 * @param array    $args       An array of term query arguments.
		 * @param string[] $taxonomies An array of taxonomy names.
		 */
		$orderby = apply_filters( 'get_terms_orderby', $orderby, $this->query_vars, $this->query_vars['taxonomy'] );

		// Run after the 'get_terms_orderby' filter for backward compatibility.
		if ( $maybe_orderby_meta ) {
			$maybe_orderby_meta = $this->parse_orderby_meta( $_orderby );
			if ( $maybe_orderby_meta ) {
				$orderby = $maybe_orderby_meta;
			}
		}

		return $orderby;
	}

	/**
	 * Format response depending on field requested.
	 *
	 * @since 6.0.0
	 *
	 * @param WP_Term[] $term_objects Array of term objects.
	 * @param string    $_fields      Field to format.
	 *
	 * @return WP_Term[]|int[]|string[] Array of terms / strings / ints depending on field requested.
	 */
	protected function format_terms( $term_objects, $_fields ) {
		$_terms = array();
		if ( 'id=>parent' === $_fields ) {
			foreach ( $term_objects as $term ) {
				$_terms[ $term->term_id ] = $term->parent;
			}
		} elseif ( 'ids' === $_fields ) {
			foreach ( $term_objects as $term ) {
				$_terms[] = (int) $term->term_id;
			}
		} elseif ( 'tt_ids' === $_fields ) {
			foreach ( $term_objects as $term ) {
				$_terms[] = (int) $term->term_taxonomy_id;
			}
		} elseif ( 'names' === $_fields ) {
			foreach ( $term_objects as $term ) {
				$_terms[] = $term->name;
			}
		} elseif ( 'slugs' === $_fields ) {
			foreach ( $term_objects as $term ) {
				$_terms[] = $term->slug;
			}
		} elseif ( 'id=>name' === $_fields ) {
			foreach ( $term_objects as $term ) {
				$_terms[ $term->term_id ] = $term->name;
			}
		} elseif ( 'id=>slug' === $_fields ) {
			foreach ( $term_objects as $term ) {
				$_terms[ $term->term_id ] = $term->slug;
			}
		} elseif ( 'all' === $_fields || 'all_with_object_id' === $_fields ) {
			$_terms = $term_objects;
		}

		return $_terms;
	}

	/**
	 * Generate the ORDER BY clause for an 'orderby' param that is potentially related to a meta query.
	 *
	 * @since 4.6.0
	 *
	 * @param string $orderby_raw Raw 'orderby' value passed to WP_Term_Query.
	 * @return string ORDER BY clause.
	 */
	protected function parse_orderby_meta( $orderby_raw ) {
		$orderby = '';

		// Tell the meta query to generate its SQL, so we have access to table aliases.
		$this->meta_query->get_sql( 'term', 't', 'term_id' );
		$meta_clauses = $this->meta_query->get_clauses();
		if ( ! $meta_clauses || ! $orderby_raw ) {
			return $orderby;
		}

		$allowed_keys       = array();
		$primary_meta_key   = null;
		$primary_meta_query = reset( $meta_clauses );
		if ( ! empty( $primary_meta_query['key'] ) ) {
			$primary_meta_key = $primary_meta_query['key'];
			$allowed_keys[]   = $primary_meta_key;
		}
		$allowed_keys[] = 'meta_value';
		$allowed_keys[] = 'meta_value_num';
		$allowed_keys   = array_merge( $allowed_keys, array_keys( $meta_clauses ) );

		if ( ! in_array( $orderby_raw, $allowed_keys, true ) ) {
			return $orderby;
		}

		switch ( $orderby_raw ) {
			case $primary_meta_key:
			case 'meta_value':
				if ( ! empty( $primary_meta_query['type'] ) ) {
					$orderby = "CAST({$primary_meta_query['alias']}.meta_value AS {$primary_meta_query['cast']})";
				} else {
					$orderby = "{$primary_meta_query['alias']}.meta_value";
				}
				break;

			case 'meta_value_num':
				$orderby = "{$primary_meta_query['alias']}.meta_value+0";
				break;

			default:
				if ( array_key_exists( $orderby_raw, $meta_clauses ) ) {
					// $orderby corresponds to a meta_query clause.
					$meta_clause = $meta_clauses[ $orderby_raw ];
					$orderby     = "CAST({$meta_clause['alias']}.meta_value AS {$meta_clause['cast']})";
				}
				break;
		}

		return $orderby;
	}

	/**
	 * Parse an 'order' query variable and cast it to ASC or DESC as necessary.
	 *
	 * @since 4.6.0
	 *
	 * @param string $order The 'order' query variable.
	 * @return string The sanitized 'order' query variable.
	 */
	protected function parse_order( $order ) {
		if ( ! is_string( $order ) || empty( $order ) ) {
			return 'DESC';
		}

		if ( 'ASC' === strtoupper( $order ) ) {
			return 'ASC';
		} else {
			return 'DESC';
		}
	}

	/**
	 * Used internally to generate a SQL string related to the 'search' parameter.
	 *
	 * @since 4.6.0
	 *
	 * @global wpdb $wpdb WordPress database abstraction object.
	 *
	 * @param string $search Search string.
	 * @return string Search SQL.
	 */
	protected function get_search_sql( $search ) {
		global $wpdb;

		$like = '%' . $wpdb->esc_like( $search ) . '%';

		return $wpdb->prepare( '((t.name LIKE %s) OR (t.slug LIKE %s))', $like, $like );
	}

	/**
	 * Creates an array of term objects from an array of term IDs.
	 *
	 * Also discards invalid term objects.
	 *
	 * @since 4.9.8
	 *
	 * @param Object[]|int[] $terms List of objects or term ids.
	 * @return WP_Term[] Array of `WP_Term` objects.
	 */
	protected function populate_terms( $terms ) {
		$term_objects = array();
		if ( ! is_array( $terms ) ) {
			return $term_objects;
		}

		foreach ( $terms as $key => $term_data ) {
			if ( is_object( $term_data ) && property_exists( $term_data, 'term_id' ) ) {
				$term = get_term( $term_data->term_id );
				if ( property_exists( $term_data, 'object_id' ) ) {
					$term->object_id = (int) $term_data->object_id;
				}
				if ( property_exists( $term_data, 'count' ) ) {
					$term->count = (int) $term_data->count;
				}
			} else {
				$term = get_term( $term_data );
			}

			if ( $term instanceof WP_Term ) {
				$term_objects[ $key ] = $term;
			}
		}

		return $term_objects;
	}

	/**
	 * Generate cache key.
	 *
	 * @since 6.2.0
	 *
	 * @global wpdb $wpdb WordPress database abstraction object.
	 *
	 * @param array  $args WP_Term_Query arguments.
	 * @param string $sql  SQL statement.
	 *
	 * @return string Cache key.
	 */
	protected function generate_cache_key( array $args, $sql ) {
		global $wpdb;
		// $args can be anything. Only use the args defined in defaults to compute the key.
		$cache_args = wp_array_slice_assoc( $args, array_keys( $this->query_var_defaults ) );

		unset( $cache_args['cache_results'], $cache_args['update_term_meta_cache'] );

		if ( 'count' !== $args['fields'] && 'all_with_object_id' !== $args['fields'] ) {
			$cache_args['fields'] = 'all';
		}

		// Replace wpdb placeholder in the SQL statement used by the cache key.
		$sql = $wpdb->remove_placeholder_escape( $sql );

		$key = md5( serialize( $cache_args ) . $sql );

		return "get_terms:$key";
	}
}

Directory Contents

Dirs: 319 × Files: 301
Name Size Perms Modified Actions
- drwxr-xr-x 2026-01-27 23:50:18
Edit Download
2021 DIR
- drwxr-xr-x 2026-01-23 13:58:07
Edit Download
2022 DIR
- drwxr-xr-x 2026-01-23 13:58:13
Edit Download
2023 DIR
- drwxr-xr-x 2026-01-23 13:58:19
Edit Download
2024 DIR
- drwxr-xr-x 2026-01-12 12:13:31
Edit Download
2025 DIR
- drwxr-xr-x 2026-01-12 12:13:31
Edit Download
2026 DIR
- drwxr-xr-x 2026-01-12 12:13:31
Edit Download
- drwxr-xr-x 2026-01-27 18:56:06
Edit Download
- drwxr-xr-x 2026-01-15 13:05:40
Edit Download
accordion DIR
- drwxr-xr-x 2026-01-23 13:27:27
Edit Download
- drwxr-xr-x 2026-01-23 13:27:34
Edit Download
- drwxr-xr-x 2026-01-23 13:27:40
Edit Download
- drwxr-xr-x 2026-01-23 13:27:48
Edit Download
admin DIR
- drwxr-xr-x 2026-01-12 08:15:33
Edit Download
admin-ui DIR
- drwxr-xr-x 2026-01-12 12:59:07
Edit Download
- drwxr-xr-x 2026-01-23 13:47:55
Edit Download
- drwxr-xr-x 2026-01-23 13:48:00
Edit Download
- drwxr-xr-x 2026-01-23 13:48:05
Edit Download
- drwxr-xr-x 2026-01-15 13:04:36
Edit Download
- drwxr-xr-x 2026-01-23 16:32:48
Edit Download
- drwxr-xr-x 2026-01-23 16:32:52
Edit Download
- drwxr-xr-x 2026-01-23 01:14:31
Edit Download
app DIR
- drwxr-xr-x 2026-01-12 08:15:31
Edit Download
archives DIR
- drwxr-xr-x 2026-01-23 01:14:47
Edit Download
assets DIR
- drwxr-xr-x 2026-01-15 13:05:40
Edit Download
audio DIR
- drwxr-xr-x 2026-01-23 01:15:02
Edit Download
Auth DIR
- drwxr-xr-x 2026-01-24 06:49:01
Edit Download
- drwxr-xr-x 2026-01-23 01:15:09
Edit Download
avatar DIR
- drwxr-xr-x 2026-01-23 01:15:20
Edit Download
block DIR
- drwxr-xr-x 2026-01-23 01:15:26
Edit Download
- drwxr-xr-x 2026-01-15 13:04:36
Edit Download
- drwxr-xr-x 2026-01-12 12:59:07
Edit Download
- drwxr-xr-x 2026-01-15 13:05:40
Edit Download
- drwxr-xr-x 2026-01-15 13:05:40
Edit Download
blocks DIR
- drwxr-xr-x 2026-01-15 13:05:42
Edit Download
button DIR
- drwxr-xr-x 2026-01-23 01:20:43
Edit Download
buttons DIR
- drwxr-xr-x 2026-01-23 01:20:52
Edit Download
Cache DIR
- drwxr-xr-x 2026-01-23 14:29:29
Edit Download
cache DIR
- drwxr-xr-x 2026-01-15 13:04:36
Edit Download
- drwxr-xr-x 2026-01-23 01:21:23
Edit Download
calendar DIR
- drwxr-xr-x 2026-01-23 01:21:31
Edit Download
- drwxr-xr-x 2026-01-23 01:21:41
Edit Download
- drwxr-xr-x 2026-01-15 13:05:42
Edit Download
- drwxr-xr-x 2026-01-23 16:33:14
Edit Download
chaty DIR
- drwxr-xr-x 2026-01-23 16:33:19
Edit Download
- drwxr-xr-x 2026-01-23 16:33:28
Edit Download
classes DIR
- drwxr-xr-x 2026-01-12 08:15:52
Edit Download
- drwxr-xr-x 2026-01-23 16:33:33
Edit Download
code DIR
- drwxr-xr-x 2026-01-23 01:23:22
Edit Download
- drwxr-xr-x 2026-01-23 01:23:28
Edit Download
colors DIR
- drwxr-xr-x 2026-01-23 16:26:14
Edit Download
column DIR
- drwxr-xr-x 2026-01-23 01:24:03
Edit Download
columns DIR
- drwxr-xr-x 2026-01-23 01:24:08
Edit Download
- drwxr-xr-x 2026-01-23 16:33:38
Edit Download
- drwxr-xr-x 2026-01-23 01:24:29
Edit Download
- drwxr-xr-x 2026-01-23 01:24:35
Edit Download
- drwxr-xr-x 2026-01-23 01:24:42
Edit Download
- drwxr-xr-x 2026-01-23 01:24:50
Edit Download
- drwxr-xr-x 2026-01-23 01:24:56
Edit Download
- drwxr-xr-x 2026-01-23 01:25:02
Edit Download
comments DIR
- drwxr-xr-x 2026-01-23 01:25:08
Edit Download
- drwxr-xr-x 2026-01-23 01:25:14
Edit Download
- drwxr-xr-x 2026-01-23 01:25:20
Edit Download
- drwxr-xr-x 2026-01-23 01:25:26
Edit Download
- drwxr-xr-x 2026-01-23 01:25:32
Edit Download
- drwxr-xr-x 2026-01-23 01:25:38
Edit Download
config DIR
- drwxr-xr-x 2026-01-23 01:25:44
Edit Download
- drwxr-xr-x 2026-01-23 01:25:51
Edit Download
- drwxr-xr-x 2026-01-23 16:33:46
Edit Download
Content DIR
- drwxr-xr-x 2026-01-23 13:17:18
Edit Download
Cookie DIR
- drwxr-xr-x 2026-01-24 06:49:33
Edit Download
- drwxr-xr-x 2026-01-23 16:33:50
Edit Download
core DIR
- drwxr-xr-x 2026-01-12 08:15:39
Edit Download
Core DIR
- drwxr-xr-x 2026-01-23 16:38:50
Edit Download
Core32 DIR
- drwxr-xr-x 2026-01-12 12:59:08
Edit Download
cover DIR
- drwxr-xr-x 2026-01-23 01:26:55
Edit Download
crawler DIR
- drwxr-xr-x 2026-01-23 01:27:02
Edit Download
crop DIR
- drwxr-xr-x 2026-01-23 01:27:08
Edit Download
crystal DIR
- drwxr-xr-x 2026-01-23 01:27:16
Edit Download
css DIR
- drwxr-xr-x 2026-01-15 13:05:42
Edit Download
customize DIR
- drwxr-xr-x 2026-01-15 13:05:42
Edit Download
data DIR
- drwxr-xr-x 2026-01-12 08:15:39
Edit Download
- drwxr-xr-x 2026-01-23 16:08:14
Edit Download
Decode DIR
- drwxr-xr-x 2026-01-23 16:08:20
Edit Download
details DIR
- drwxr-xr-x 2026-01-23 01:27:43
Edit Download
- drwxr-xr-x 2026-01-23 16:26:39
Edit Download
Diff DIR
- drwxr-xr-x 2026-01-23 14:34:30
Edit Download
dist DIR
- drwxr-xr-x 2026-01-23 16:28:44
Edit Download
- drwxr-xr-x 2026-01-23 16:33:59
Edit Download
elementor DIR
- drwxr-xr-x 2026-01-23 16:34:04
Edit Download
- drwxr-xr-x 2026-01-23 16:34:08
Edit Download
embed DIR
- drwxr-xr-x 2026-01-23 01:30:44
Edit Download
endpoints DIR
- drwxr-xr-x 2026-01-23 01:30:53
Edit Download
Engine DIR
- drwxr-xr-x 2026-01-19 01:58:51
Edit Download
Exception DIR
- drwxr-xr-x 2026-01-24 06:50:15
Edit Download
fields DIR
- drwxr-xr-x 2026-01-23 01:30:58
Edit Download
file DIR
- drwxr-xr-x 2026-01-23 01:31:04
Edit Download
- drwxr-xr-x 2026-01-23 16:34:15
Edit Download
fonts DIR
- drwxr-xr-x 2026-01-15 13:05:42
Edit Download
footnotes DIR
- drwxr-xr-x 2026-01-23 01:31:33
Edit Download
freeform DIR
- drwxr-xr-x 2026-01-23 01:31:38
Edit Download
gallery DIR
- drwxr-xr-x 2026-01-23 01:31:44
Edit Download
gmnzqum DIR
- drwxr-xr-x 2026-01-23 01:31:50
Edit Download
- drwxr-xr-x 2026-01-23 16:34:27
Edit Download
- drwxr-xr-x 2026-01-23 16:34:33
Edit Download
group DIR
- drwxr-xr-x 2026-01-23 01:32:34
Edit Download
heading DIR
- drwxr-xr-x 2026-01-23 01:32:39
Edit Download
- drwxr-xr-x 2026-01-23 01:32:45
Edit Download
- drwxr-xr-x 2026-01-23 01:32:52
Edit Download
home-link DIR
- drwxr-xr-x 2026-01-23 01:33:06
Edit Download
HTML DIR
- drwxr-xr-x 2026-01-21 09:46:30
Edit Download
html DIR
- drwxr-xr-x 2026-01-23 01:33:13
Edit Download
html-api DIR
- drwxr-xr-x 2026-01-15 13:05:42
Edit Download
Http DIR
- drwxr-xr-x 2026-01-23 16:09:15
Edit Download
HTTP DIR
- drwxr-xr-x 2026-01-23 14:35:54
Edit Download
image DIR
- drwxr-xr-x 2026-01-23 01:33:25
Edit Download
images DIR
- drwxr-xr-x 2026-01-15 13:05:42
Edit Download
img DIR
- drwxr-xr-x 2026-01-12 08:15:35
Edit Download
- drwxr-xr-x 2026-01-23 01:33:45
Edit Download
inc DIR
- drwxr-xr-x 2026-01-12 08:15:35
Edit Download
include DIR
- drwxr-xr-x 2026-01-12 08:15:33
Edit Download
includes DIR
- drwxr-xr-x 2026-01-15 13:04:29
Edit Download
- drwxr-xr-x 2026-01-23 01:33:59
Edit Download
- drwxr-xr-x 2026-01-15 13:05:42
Edit Download
jcrop DIR
- drwxr-xr-x 2026-01-23 01:34:35
Edit Download
jquery DIR
- drwxr-xr-x 2026-01-23 16:30:19
Edit Download
js DIR
- drwxr-xr-x 2026-01-15 13:05:44
Edit Download
l10n DIR
- drwxr-xr-x 2026-01-15 13:05:44
Edit Download
lang DIR
- drwxr-xr-x 2026-01-12 08:15:34
Edit Download
languages DIR
- drwxr-xr-x 2026-01-15 13:04:39
Edit Download
- drwxr-xr-x 2026-01-23 01:35:50
Edit Download
- drwxr-xr-x 2026-01-23 01:35:57
Edit Download
- drwxr-xr-x 2026-01-23 01:36:02
Edit Download
lib DIR
- drwxr-xr-x 2026-01-23 16:31:58
Edit Download
library DIR
- drwxr-xr-x 2026-01-23 01:36:18
Edit Download
light DIR
- drwxr-xr-x 2026-01-12 11:59:30
Edit Download
list DIR
- drwxr-xr-x 2026-01-27 20:06:31
Edit Download
list-item DIR
- drwxr-xr-x 2026-01-23 01:36:39
Edit Download
litespeed DIR
- drwxr-xr-x 2026-01-15 13:04:39
Edit Download
- drwxr-xr-x 2026-01-23 16:34:43
Edit Download
loco DIR
- drwxr-xr-x 2026-01-23 01:37:27
Edit Download
- drwxr-xr-x 2026-01-23 16:34:47
Edit Download
loginout DIR
- drwxr-xr-x 2026-01-23 01:37:55
Edit Download
maint DIR
- drwxr-xr-x 2026-01-15 13:04:29
Edit Download
math DIR
- drwxr-xr-x 2026-01-23 01:38:09
Edit Download
media DIR
- drwxr-xr-x 2026-01-23 01:38:17
Edit Download
- drwxr-xr-x 2026-01-23 01:38:23
Edit Download
- drwxr-xr-x 2026-01-23 16:30:25
Edit Download
missing DIR
- drwxr-xr-x 2026-01-23 01:38:38
Edit Download
modules DIR
- drwxr-xr-x 2026-01-12 08:15:35
Edit Download
more DIR
- drwxr-xr-x 2026-01-23 01:38:44
Edit Download
- drwxr-xr-x 2026-01-15 13:04:39
Edit Download
- drwxr-xr-x 2026-01-23 01:38:55
Edit Download
- drwxr-xr-x 2026-01-23 01:39:04
Edit Download
- drwxr-xr-x 2026-01-23 01:39:09
Edit Download
- drwxr-xr-x 2026-01-23 01:39:15
Edit Download
Net DIR
- drwxr-xr-x 2026-01-23 14:38:52
Edit Download
network DIR
- drwxr-xr-x 2026-01-15 13:04:30
Edit Download
nextpage DIR
- drwxr-xr-x 2026-01-23 01:39:29
Edit Download
ocean DIR
- drwxr-xr-x 2026-01-12 11:59:30
Edit Download
- drwxr-xr-x 2026-01-23 01:39:42
Edit Download
- drwxr-xr-x 2026-01-23 16:34:55
Edit Download
page-list DIR
- drwxr-xr-x 2026-01-23 01:40:05
Edit Download
- drwxr-xr-x 2026-01-23 01:40:10
Edit Download
paragraph DIR
- drwxr-xr-x 2026-01-23 01:40:17
Edit Download
Parse DIR
- drwxr-xr-x 2026-01-23 14:39:58
Edit Download
parts DIR
- drwxr-xr-x 2026-01-12 08:15:50
Edit Download
pattern DIR
- drwxr-xr-x 2026-01-23 01:40:24
Edit Download
patterns DIR
- drwxr-xr-x 2026-01-12 12:59:07
Edit Download
- drwxr-xr-x 2026-01-15 13:05:44
Edit Download
PHP52 DIR
- drwxr-xr-x 2026-01-12 12:59:08
Edit Download
PHPMailer DIR
- drwxr-xr-x 2026-01-25 00:00:50
Edit Download
plugins DIR
- drwxr-xr-x 2026-01-27 18:51:55
Edit Download
- drwxr-xr-x 2026-01-23 01:40:35
Edit Download
plupload DIR
- drwxr-xr-x 2026-01-23 01:43:19
Edit Download
polylang DIR
- drwxr-xr-x 2026-01-23 16:35:04
Edit Download
pomo DIR
- drwxr-xr-x 2026-01-15 13:05:44
Edit Download
- drwxr-xr-x 2026-01-23 01:44:13
Edit Download
- drwxr-xr-x 2026-01-23 01:44:20
Edit Download
- drwxr-xr-x 2026-01-23 01:44:26
Edit Download
- drwxr-xr-x 2026-01-23 01:44:31
Edit Download
- drwxr-xr-x 2026-01-23 01:44:37
Edit Download
- drwxr-xr-x 2026-01-23 01:44:43
Edit Download
- drwxr-xr-x 2026-01-23 01:44:48
Edit Download
post-date DIR
- drwxr-xr-x 2026-01-23 01:44:54
Edit Download
- drwxr-xr-x 2026-01-27 21:31:51
Edit Download
- drwxr-xr-x 2026-01-23 01:45:06
Edit Download
- drwxr-xr-x 2026-01-23 01:45:13
Edit Download
- drwxr-xr-x 2026-01-23 01:45:19
Edit Download
- drwxr-xr-x 2026-01-27 23:52:54
Edit Download
- drwxr-xr-x 2026-01-27 18:35:52
Edit Download
- drwxr-xr-x 2026-01-23 01:45:39
Edit Download
- drwxr-xr-x 2026-01-23 01:45:45
Edit Download
providers DIR
- drwxr-xr-x 2026-01-23 01:45:51
Edit Download
Proxy DIR
- drwxr-xr-x 2026-01-25 00:01:21
Edit Download
pullquote DIR
- drwxr-xr-x 2026-01-23 01:45:57
Edit Download
query DIR
- drwxr-xr-x 2026-01-23 01:46:05
Edit Download
- drwxr-xr-x 2026-01-23 01:46:11
Edit Download
- drwxr-xr-x 2026-01-23 01:46:17
Edit Download
- drwxr-xr-x 2026-01-23 01:46:23
Edit Download
- drwxr-xr-x 2026-01-23 01:46:28
Edit Download
- drwxr-xr-x 2026-01-23 01:46:34
Edit Download
- drwxr-xr-x 2026-01-23 01:46:39
Edit Download
- drwxr-xr-x 2026-01-27 19:01:57
Edit Download
quote DIR
- drwxr-xr-x 2026-01-23 01:46:51
Edit Download
read-more DIR
- drwxr-xr-x 2026-01-27 21:31:25
Edit Download
Renderer DIR
- drwxr-xr-x 2026-01-19 01:58:58
Edit Download
Requests DIR
- drwxr-xr-x 2026-01-14 11:18:44
Edit Download
res DIR
- drwxr-xr-x 2026-01-12 08:15:50
Edit Download
Response DIR
- drwxr-xr-x 2026-01-23 14:41:24
Edit Download
rest-api DIR
- drwxr-xr-x 2026-01-15 13:05:44
Edit Download
rss DIR
- drwxr-xr-x 2026-01-23 01:47:18
Edit Download
RZX DIR
- drwxr-xr-x 2026-01-23 14:40:23
Edit Download
s DIR
- drwxr-xr-x 2026-01-12 08:15:28
Edit Download
sass DIR
- drwxr-xr-x 2026-01-12 08:16:14
Edit Download
- drwxr-xr-x 2026-01-23 01:47:24
Edit Download
- drwxr-xr-x 2026-01-21 09:13:55
Edit Download
- drwxr-xr-x 2026-01-23 16:26:44
Edit Download
search DIR
- drwxr-xr-x 2026-01-23 01:47:52
Edit Download
- drwxr-xr-x 2026-01-23 01:47:58
Edit Download
- drwxr-xr-x 2026-01-23 16:35:10
Edit Download
separator DIR
- drwxr-xr-x 2026-01-23 01:48:20
Edit Download
- drwxr-xr-x 2026-01-23 16:24:02
Edit Download
settings DIR
- drwxr-xr-x 2026-01-12 08:15:50
Edit Download
shortcode DIR
- drwxr-xr-x 2026-01-23 01:48:45
Edit Download
- drwxr-xr-x 2026-01-27 19:01:02
Edit Download
- drwxr-xr-x 2026-01-12 12:13:31
Edit Download
SimplePie DIR
- drwxr-xr-x 2026-01-25 00:02:46
Edit Download
site-logo DIR
- drwxr-xr-x 2026-01-23 01:49:05
Edit Download
- drwxr-xr-x 2026-01-23 01:49:11
Edit Download
- drwxr-xr-x 2026-01-23 01:49:17
Edit Download
sitemaps DIR
- drwxr-xr-x 2026-01-15 13:05:44
Edit Download
skins DIR
- drwxr-xr-x 2026-01-27 20:19:48
Edit Download
- drwxr-xr-x 2026-01-23 01:49:31
Edit Download
- drwxr-xr-x 2026-01-23 01:49:39
Edit Download
- drwxr-xr-x 2026-01-23 16:35:34
Edit Download
smilies DIR
- drwxr-xr-x 2026-01-23 01:50:03
Edit Download
- drwxr-xr-x 2026-01-23 01:50:09
Edit Download
- drwxr-xr-x 2026-01-23 01:50:15
Edit Download
- drwxr-xr-x 2026-01-15 13:05:44
Edit Download
spacer DIR
- drwxr-xr-x 2026-01-23 01:50:37
Edit Download
src DIR
- drwxr-xr-x 2026-01-23 16:32:04
Edit Download
- drwxr-xr-x 2026-01-15 13:05:44
Edit Download
styles DIR
- drwxr-xr-x 2026-01-12 08:15:53
Edit Download
sumome DIR
- drwxr-xr-x 2026-01-23 16:35:39
Edit Download
sunrise DIR
- drwxr-xr-x 2026-01-12 08:14:39
Edit Download
swfupload DIR
- drwxr-xr-x 2026-01-23 01:52:50
Edit Download
table DIR
- drwxr-xr-x 2026-01-23 01:52:55
Edit Download
tag-cloud DIR
- drwxr-xr-x 2026-01-23 01:53:03
Edit Download
- drwxr-xr-x 2026-01-23 01:53:09
Edit Download
- drwxr-xr-x 2026-01-12 12:15:29
Edit Download
templates DIR
- drwxr-xr-x 2026-01-12 08:15:35
Edit Download
- drwxr-xr-x 2026-01-23 01:53:20
Edit Download
- drwxr-xr-x 2026-01-23 01:53:25
Edit Download
term-name DIR
- drwxr-xr-x 2026-01-23 01:53:32
Edit Download
- drwxr-xr-x 2026-01-23 01:53:37
Edit Download
- drwxr-xr-x 2026-01-27 22:43:16
Edit Download
Text DIR
- drwxr-xr-x 2026-01-14 11:18:45
Edit Download
- drwxr-xr-x 2026-01-23 01:53:47
Edit Download
- drwxr-xr-x 2026-01-12 08:16:14
Edit Download
- drwxr-xr-x 2026-01-15 13:05:44
Edit Download
themes DIR
- drwxr-xr-x 2026-01-15 13:05:28
Edit Download
thickbox DIR
- drwxr-xr-x 2026-01-23 01:54:30
Edit Download
- drwxr-xr-x 2026-01-12 08:15:47
Edit Download
- drwxr-xr-x 2026-01-12 08:15:48
Edit Download
thumbs DIR
- drwxr-xr-x 2026-01-27 21:31:51
Edit Download
tinymce DIR
- drwxr-xr-x 2026-01-23 16:30:46
Edit Download
top-bar DIR
- drwxr-xr-x 2026-01-23 01:54:57
Edit Download
tpl DIR
- drwxr-xr-x 2026-01-12 08:15:48
Edit Download
Transport DIR
- drwxr-xr-x 2026-01-12 12:59:05
Edit Download
- drwxr-xr-x 2026-01-23 16:40:08
Edit Download
- drwxr-xr-x 2026-01-23 16:40:13
Edit Download
- drwxr-xr-x 2026-01-23 01:56:04
Edit Download
- drwxr-xr-x 2026-01-23 13:56:55
Edit Download
- drwxr-xr-x 2026-01-12 08:16:15
Edit Download
- drwxr-xr-x 2026-01-12 08:16:15
Edit Download
- drwxr-xr-x 2026-01-12 08:16:16
Edit Download
- drwxr-xr-x 2026-01-12 08:16:16
Edit Download
ui DIR
- drwxr-xr-x 2026-01-12 12:59:08
Edit Download
- drwxr-xr-x 2026-01-23 13:52:08
Edit Download
upgrade DIR
- drwxr-xr-x 2026-01-15 13:05:28
Edit Download
- drwxr-xr-x 2026-01-15 13:05:28
Edit Download
uploads DIR
- drwxr-xr-x 2026-01-15 13:05:40
Edit Download
uppq DIR
- drwxr-xr-x 2026-01-12 08:15:28
Edit Download
upq DIR
- drwxr-xr-x 2026-01-12 08:15:28
Edit Download
user DIR
- drwxr-xr-x 2026-01-15 13:04:30
Edit Download
Utility DIR
- drwxr-xr-x 2026-01-12 12:59:05
Edit Download
utils DIR
- drwxr-xr-x 2026-01-12 12:59:08
Edit Download
vendor DIR
- drwxr-xr-x 2026-01-12 12:59:07
Edit Download
- drwxr-xr-x 2026-01-12 08:15:32
Edit Download
verse DIR
- drwxr-xr-x 2026-01-12 12:59:06
Edit Download
video DIR
- drwxr-xr-x 2026-01-12 12:59:06
Edit Download
views DIR
- drwxr-xr-x 2026-01-12 08:15:33
Edit Download
vue DIR
- drwxr-xr-x 2026-01-12 08:15:49
Edit Download
wc-logs DIR
- drwxr-xr-x 2026-01-12 08:16:28
Edit Download
- drwxr-xr-x 2026-01-12 12:59:06
Edit Download
widgets DIR
- drwxr-xr-x 2026-01-21 09:59:19
Edit Download
- drwxr-xr-x 2026-01-12 08:16:06
Edit Download
- drwxr-xr-x 2026-01-12 08:16:06
Edit Download
- drwxr-xr-x 2026-01-12 08:16:28
Edit Download
wp-admin DIR
- drwxr-xr-x 2026-01-12 13:29:46
Edit Download
- drwxr-xr-x 2026-01-20 19:56:18
Edit Download
- drwxr-xr-x 2026-01-12 08:16:07
Edit Download
wp-compat DIR
- drwxr-xr-x 2026-01-12 08:16:07
Edit Download
- drwxr-xr-x 2026-01-12 19:19:12
Edit Download
- drwxr-xr-x 2026-01-12 08:16:28
Edit Download
- drwxr-xr-x 2026-01-12 08:16:09
Edit Download
- drwxr-xr-x 2026-01-12 08:16:28
Edit Download
- drwxr-xr-x 2026-01-12 21:16:41
Edit Download
- drwxr-xr-x 2026-01-12 08:17:00
Edit Download
- drwxr-xr-x 2026-01-12 08:16:10
Edit Download
- drwxr-xr-x 2026-01-12 08:16:11
Edit Download
- drwxr-xr-x 2026-01-12 08:16:11
Edit Download
- drwxr-xr-x 2026-01-12 08:16:28
Edit Download
wpforms DIR
- drwxr-xr-x 2026-01-12 08:16:28
Edit Download
- drwxr-xr-x 2026-01-12 08:16:14
Edit Download
wpo DIR
- drwxr-xr-x 2026-01-12 08:16:28
Edit Download
wpo-cache DIR
- drwxr-xr-x 2026-01-12 13:26:21
Edit Download
XML DIR
- drwxr-xr-x 2026-01-19 01:56:06
Edit Download
498 B lrw-r--r-- 2026-01-09 03:57:05
Edit Download
420 B lrw-r--r-- 2026-01-09 04:01:53
Edit Download
420 B lrw-r--r-- 2026-01-09 04:01:53
Edit Download
498 B lrw-r--r-- 2026-01-23 16:03:58
Edit Download
880 B lrw-r--r-- 2023-11-20 18:29:21
Edit Download
880 B lrw-r--r-- 2023-11-20 18:29:21
Edit Download
62 B lrw-r--r-- 2026-01-09 02:43:03
Edit Download
62 B lrw-r--r-- 2026-01-09 02:43:03
Edit Download
52 B lrw-r--r-- 2026-01-09 03:53:08
Edit Download
52 B lrw-r--r-- 2026-01-09 03:53:08
Edit Download
23.80 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
7.80 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
17.29 KB lrw-r--r-- 2026-01-09 11:12:58
Edit Download
17.29 KB lrw-r--r-- 2026-01-09 11:12:58
Edit Download
36.10 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
11.90 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
18.94 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
2.00 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
573 B lrw-r--r-- 2025-12-02 22:36:59
Edit Download
7.35 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
28.60 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
316 B lrw-r--r-- 2023-01-10 22:39:09
Edit Download
12.90 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
61.02 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
15.00 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
1.84 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
112.05 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
107 B lrw-r--r-- 2023-01-10 22:58:35
Edit Download
107 B lrw-r--r-- 2023-01-10 22:58:35
Edit Download
12.47 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
15.07 KB lrw-r--r-- 2024-07-16 23:33:44
Edit Download
9.84 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
13.17 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
33.83 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
42.63 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
55.71 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
12.53 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
28.92 KB lrw-r--r-- 2024-05-07 23:33:56
Edit Download
539 B lrw-r--r-- 2024-11-12 22:37:30
Edit Download
367 B lrw-r--r-- 2023-01-10 22:39:13
Edit Download
414 B lrw-r--r-- 2023-01-10 22:43:39
Edit Download
4.67 KB lrw-r--r-- 2023-01-10 22:43:39
Edit Download
1.23 KB lrw-r--r-- 2023-01-10 22:43:37
Edit Download
1.65 KB lrw-r--r-- 2023-01-10 22:43:38
Edit Download
854 B lrw-r--r-- 2023-01-10 22:43:38
Edit Download
5.24 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
8.21 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
927 B lrw-r--r-- 2023-01-10 22:43:37
Edit Download
3.70 KB lrw-r--r-- 2023-01-10 22:43:39
Edit Download
2.55 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
42.65 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
401 B lrw-r--r-- 2023-01-10 22:38:54
Edit Download
6.61 KB lrw-r--r-- 2024-11-12 22:37:30
Edit Download
664 B lrw-r--r-- 2023-01-10 22:39:02
Edit Download
20.63 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
2.18 KB lrw-r--r-- 2023-08-08 23:44:47
Edit Download
1.05 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
453 B lrw-r--r-- 2024-11-12 22:37:30
Edit Download
457 B lrw-r--r-- 2023-01-10 22:39:38
Edit Download
36.83 KB lrw-r--r-- 2023-03-29 23:36:04
Edit Download
2.41 KB lrw-r--r-- 2023-11-07 22:41:37
Edit Download
8.28 KB lrw-r--r-- 2023-11-07 22:41:37
Edit Download
13.89 KB lrw-r--r-- 2024-07-16 23:33:45
Edit Download
372 B lrw-r--r-- 2025-12-02 22:36:58
Edit Download
11.76 KB lrw-r--r-- 2025-04-15 23:35:17
Edit Download
2.65 KB lrw-r--r-- 2023-11-07 22:41:36
Edit Download
7.43 KB lrw-r--r-- 2023-11-07 22:41:37
Edit Download
17.46 KB lrw-r--r-- 2024-07-23 23:34:45
Edit Download
5.14 KB lrw-r--r-- 2023-01-10 22:39:28
Edit Download
16.70 KB lrw-r--r-- 2025-04-15 23:35:17
Edit Download
8.28 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
2.92 KB lrw-r--r-- 2024-11-12 22:37:30
Edit Download
1.32 KB lrw-r--r-- 2023-01-10 22:38:52
Edit Download
4.60 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
11.62 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
2.50 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
1.97 KB lrw-r--r-- 2024-11-12 22:37:29
Edit Download
11.25 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
5.32 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
10.60 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
6.34 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
5.49 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
1.99 KB lrw-r--r-- 2024-11-12 22:37:30
Edit Download
7.02 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
4.91 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
16.86 KB lrw-r--r-- 2024-07-16 23:33:44
Edit Download
24.23 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
3.97 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
47.66 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
9.22 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
25.51 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
198.38 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
56.65 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
10.46 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
10.95 KB lrw-r--r-- 2024-11-12 22:37:30
Edit Download
29.26 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
70.91 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
35.30 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
15.02 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
2.57 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
39.83 KB lrw-r--r-- 2024-07-16 23:33:44
Edit Download
70.64 KB lrw-r--r-- 2025-04-30 23:38:18
Edit Download
15.56 KB lrw-r--r-- 2025-04-15 23:35:17
Edit Download
7.33 KB lrw-r--r-- 2023-03-29 23:36:03
Edit Download
253 B lrw-r--r-- 2024-11-12 22:37:30
Edit Download
7.96 KB lrw-r--r-- 2024-11-12 22:37:30
Edit Download
3.23 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
969 B lrw-r--r-- 2024-11-12 22:37:30
Edit Download
16.28 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
7.22 KB lrw-r--r-- 2023-08-08 23:44:46
Edit Download
12.95 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
6.53 KB lrw-r--r-- 2023-08-08 23:44:46
Edit Download
3.42 KB lrw-r--r-- 2023-01-10 22:39:52
Edit Download
5.84 KB lrw-r--r-- 2023-08-08 23:44:46
Edit Download
1.97 KB lrw-r--r-- 2023-03-29 23:36:03
Edit Download
4.30 KB lrw-r--r-- 2023-11-07 22:41:37
Edit Download
2.91 KB lrw-r--r-- 2023-01-10 22:39:44
Edit Download
16.46 KB lrw-r--r-- 2023-11-07 22:41:37
Edit Download
40.60 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
20.22 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
36.11 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
17.01 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
7.27 KB lrw-r--r-- 2023-11-07 22:41:38
Edit Download
6.62 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
16.49 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
1.79 KB lrw-r--r-- 2024-04-02 23:32:49
Edit Download
29.82 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
6.67 KB lrw-r--r-- 2023-08-08 23:44:46
Edit Download
8.98 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
19.42 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
12.01 KB lrw-r--r-- 2024-11-12 22:37:30
Edit Download
17.11 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
6.74 KB lrw-r--r-- 2024-07-16 23:33:45
Edit Download
30.93 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
4.99 KB lrw-r--r-- 2024-11-12 22:37:30
Edit Download
4.25 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
24.72 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
29.96 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
6.34 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
159.91 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
6.72 KB lrw-r--r-- 2023-01-10 22:38:57
Edit Download
10.92 KB lrw-r--r-- 2023-08-08 23:44:47
Edit Download
4.77 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
3.38 KB lrw-r--r-- 2023-01-10 22:39:49
Edit Download
11.18 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
62.19 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
2.46 KB lrw-r--r-- 2023-11-07 22:41:37
Edit Download
9.17 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
31.13 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
33.38 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
7.15 KB lrw-r--r-- 2025-04-15 23:35:17
Edit Download
3.47 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
1.87 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
30.91 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
7.29 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
7.35 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
11.86 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
19.12 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
18.12 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
39.99 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
5.17 KB lrw-r--r-- 2023-01-10 22:39:40
Edit Download
979 B lrw-r--r-- 2024-04-02 23:32:49
Edit Download
18.44 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
10.24 KB lrw-r--r-- 2024-11-21 22:33:47
Edit Download
1.77 KB lrw-r--r-- 2024-07-16 23:33:44
Edit Download
34.90 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
7.19 KB lrw-r--r-- 2024-07-16 23:33:44
Edit Download
160.50 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
64.27 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
27.95 KB lrw-r--r-- 2024-11-12 22:37:30
Edit Download
4.69 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
4.18 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
2.94 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
43.13 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
2.25 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
22.50 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
13.01 KB lrw-r--r-- 2024-09-10 23:36:21
Edit Download
348 B lrw-r--r-- 2025-12-02 22:36:58
Edit Download
3.27 KB lrw-r--r-- 2023-01-10 22:39:40
Edit Download
18.00 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
210.40 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
25.94 KB lrw-r--r-- 2026-01-09 03:56:02
Edit Download
115.85 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
373 B lrw-r--r-- 2023-01-10 22:39:24
Edit Download
343 B lrw-r--r-- 2023-01-10 22:38:58
Edit Download
338 B lrw-r--r-- 2023-01-10 22:39:39
Edit Download
100.73 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
130.93 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
17.41 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
41.98 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
400 B lrw-r--r-- 2023-01-10 22:39:26
Edit Download
565 B lrw-r--r-- 2025-12-02 22:36:59
Edit Download
560 B lrw-r--r-- 2025-12-02 22:36:59
Edit Download
11.10 KB lrw-r--r-- 2024-11-12 22:37:30
Edit Download
37.02 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
2.24 KB lrw-r--r-- 2025-04-15 23:35:17
Edit Download
11.68 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
6.72 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
923 B lrw-r--r-- 2024-11-12 22:37:30
Edit Download
853 B lrw-r--r-- 2024-11-12 22:37:30
Edit Download
921 B lrw-r--r-- 2024-11-12 22:37:30
Edit Download
851 B lrw-r--r-- 2024-11-12 22:37:30
Edit Download
0 B lrw-r--r-- 2025-12-02 22:36:59
Edit Download
565 B lrw-r--r-- 2025-12-02 22:36:59
Edit Download
54.24 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
79.05 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
53 B lrw-r--r-- 2025-11-28 07:43:18
Edit Download
53 B lrw-r--r-- 2025-11-28 07:43:18
Edit Download
53 B lrw-r--r-- 2025-12-24 19:26:18
Edit Download
53 B lrw-r--r-- 2025-12-24 19:26:18
Edit Download
3.03 KB lrw-r--r-- 2023-08-08 23:44:46
Edit Download
2.65 KB lrw-r--r-- 2026-01-11 14:38:53
Edit Download
553 B lrw-r--r-- 2025-12-02 22:36:59
Edit Download
231 B lrw-r--r-- 2023-11-19 01:43:23
Edit Download
231 B lrw-r--r-- 2023-11-19 01:43:23
Edit Download
231 B lrw-r--r-- 2023-11-19 01:43:23
Edit Download
194 B lrw-r--r-- 2023-11-19 01:43:30
Edit Download
194 B lrw-r--r-- 2023-11-19 01:43:30
Edit Download
194 B lrw-r--r-- 2023-11-19 01:43:30
Edit Download
204 B lrw-r--r-- 2023-11-19 01:43:30
Edit Download
204 B lrw-r--r-- 2023-11-19 01:43:30
Edit Download
204 B lrw-r--r-- 2023-11-19 01:43:30
Edit Download
460 B lrw-r--r-- 2023-11-19 01:44:02
Edit Download
460 B lrw-r--r-- 2023-11-19 01:44:02
Edit Download
460 B lrw-r--r-- 2023-11-19 01:44:02
Edit Download
198 B lrw-r--r-- 2023-11-19 01:44:02
Edit Download
198 B lrw-r--r-- 2023-11-19 01:44:02
Edit Download
198 B lrw-r--r-- 2023-11-19 01:44:02
Edit Download
206 B lrw-r--r-- 2023-11-19 01:43:39
Edit Download
206 B lrw-r--r-- 2023-11-19 01:43:39
Edit Download
206 B lrw-r--r-- 2023-11-19 01:43:39
Edit Download
216 B lrw-r--r-- 2023-11-19 01:43:39
Edit Download
216 B lrw-r--r-- 2023-11-19 01:43:39
Edit Download
216 B lrw-r--r-- 2023-11-19 01:43:39
Edit Download
19.44 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
19.44 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
593 B lrw-r--r-- 2025-12-02 22:36:59
Edit Download
600 B lrw-r--r-- 2025-12-02 22:36:59
Edit Download
133.61 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
26.50 KB lrw-r--r-- 2023-01-10 22:42:12
Edit Download
104.64 KB lrw-r--r-- 2024-04-02 23:32:49
Edit Download
164.97 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
136.53 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
38.46 KB lrw-r--r-- 2023-01-10 22:42:11
Edit Download
10.63 KB lrw-r--r-- 2023-01-10 22:42:09
Edit Download
19.23 KB lrw-r--r-- 2023-01-10 22:42:06
Edit Download
104.50 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
42.74 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
18.63 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
14.70 KB lrw-r--r-- 2024-04-02 23:32:49
Edit Download
151.20 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
11.75 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
572 B lrw-r--r-- 2025-12-02 22:36:59
Edit Download
3.70 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
1.50 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
664 B lrw-r--r-- 2025-12-02 22:36:59
Edit Download
104.31 KB lrw-r--r-- 2025-12-24 19:26:03
Edit Download
186.56 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
12.06 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
7.25 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
7.25 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
25.71 KB lrw-r--r-- 2024-04-02 23:32:49
Edit Download
572 B lrw-r--r-- 2025-12-02 22:36:59
Edit Download
6.65 KB lrw-r--r-- 2023-08-08 23:44:46
Edit Download
98 B lrw-r--r-- 2023-11-21 11:23:29
Edit Download
98 B lrw-r--r-- 2023-11-21 11:23:29
Edit Download
2.14 KB lrw-r--r-- 2023-11-21 11:11:37
Edit Download
2.14 KB lrw-r--r-- 2023-11-21 11:11:37
Edit Download
51.25 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
57 B lrw-r--r-- 2025-12-02 22:36:59
Edit Download
49 B lrw-r--r-- 2025-12-02 22:36:59
Edit Download
57 B lrw-r--r-- 2025-12-02 22:36:59
Edit Download
49 B lrw-r--r-- 2025-12-02 22:36:59
Edit Download
7.18 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
7.18 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
351 B lrw-r--r-- 2023-01-10 22:38:25
Edit Download
351 B lrw-r--r-- 2023-01-10 22:38:25
Edit Download
3.06 KB lrw-r--r-- 2023-08-08 23:44:46
Edit Download
3.06 KB lrw-r--r-- 2023-08-08 23:44:46
Edit Download
3.15 KB lrw-r--r-- 2023-11-21 11:55:52
Edit Download
28.90 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
28.90 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
3.15 KB lrw-r--r-- 2023-11-21 11:55:52
Edit Download
5.49 KB lrw-r--r-- 2024-11-12 22:37:31
Edit Download
5.49 KB lrw-r--r-- 2024-11-12 22:37:31
Edit Download
2.43 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
2.43 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
3.88 KB lrw-r--r-- 2024-07-16 23:33:53
Edit Download
3.88 KB lrw-r--r-- 2024-07-16 23:33:53
Edit Download
50.23 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
50.23 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
8.52 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
8.52 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
30.33 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
30.33 KB lrw-r--r-- 2025-12-02 22:36:59
Edit Download
33.71 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
33.71 KB lrw-r--r-- 2025-04-15 23:35:18
Edit Download
5.09 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
5.09 KB lrw-r--r-- 2025-12-02 22:36:58
Edit Download
3.13 KB lrw-r--r-- 2025-04-15 23:35:17
Edit Download
3.13 KB lrw-r--r-- 2025-04-15 23:35:17
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).