✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ server.blackpussy.asia ​🇻​♯➤ 5.14.0-611.20.1.el9_7.x86_64 #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 163.245.207.76 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.243
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗞 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ mail,mb_send_mail
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/blackpussy06/public_html/bossini.com.tw/wp-includes//class-wp-view-config-data.php
<?php
/**
 * WP_View_Config_Data class
 *
 * @package WordPress
 * @since 7.1.0
 */

/**
 * Holds an entity's view configuration while it is being built.
 *
 * An instance of this class is what `get_entity_view_config_{$kind}_{$name}`
 * filter callbacks receive: a callback changes the configuration by calling
 * methods on the instance and returning it. The configuration has four
 * top-level keys — `default_view`, `default_layouts`, `view_list`, and
 * `form` — and there are three ways to contribute. They form a gradient of how
 * deep the replacement reaches:
 *
 * - The `merge()` method merges partial changes (patches) into what is already
 *   there: `default_view`, `default_layouts`, and the `form` settings by key,
 *   and the `view_list` entries by view `slug` identity. This is what plugins
 *   should use: patches compose with core's configuration and with other
 *   plugins'.
 * - `replace()` applies a patch the same way `merge()` does, with one
 *   difference: a list in the patch replaces the current list wholesale
 *   instead of merging into it by member identity. It shouldn't be the
 *   default choice — a callback that replaces a list stops inheriting core's
 *   future additions to it — but it's useful when a contributor needs to pin
 *   a list to an exact set of members.
 * - `set()` goes one step further: it replaces each top-level key the patch
 *   names wholesale, dropping whatever that key held instead of merging into
 *   it. It's for a callback that owns a key outright and wants to pin it to an
 *   exact shape without the inherited default leaking through a key-by-key
 *   merge.
 *
 * All three touch only the top-level keys the patch names — an omitted key
 * keeps whatever it had, and a top-level `null` value drops the key it names,
 * which resets it to its default. They differ only in how deep the replacement
 * reaches once a key is named: `merge()` and `replace()` merge the value in
 * key by key (an associative array merges member by member, a nested `null`
 * deletes just that leaf, a scalar replaces just that value), while `set()`
 * swaps the whole value. A nested `null` deletes just the leaf it names in
 * every case. A patch value whose shape does not match the current value —
 * an associative array where a list lives, or the reverse — is rejected with
 * a notice rather than merged, and an empty array under `merge()` is a
 * no-op. Each patch also declares the configuration schema
 * version it was written against (currently 1), so a future WordPress release
 * that changes the configuration shape can migrate existing patches forward
 * instead of breaking them.
 *
 * Where those three write values, `remove()` deletes them: it takes a spec of
 * names — a list to delete entries at a level, or a nested map to reach deeper —
 * and prunes just what it names, mirroring the configuration's shape all the way
 * down to individual list members.
 *
 * @since 7.1.0
 */
class WP_View_Config_Data {

	/**
	 * The latest supported configuration schema version.
	 *
	 * @since 7.1.0
	 * @var int
	 */
	const LATEST_VERSION = 1;

	/**
	 * The documented top-level configuration keys.
	 *
	 * @since 7.1.0
	 * @var string[]
	 */
	const CONFIG_KEYS = array( 'default_view', 'default_layouts', 'view_list', 'form' );

	/**
	 * The configuration being contributed to.
	 *
	 * @since 7.1.0
	 * @var array
	 */
	private $config;

	/**
	 * The default configuration.
	 *
	 * @since 7.1.0
	 * @var array
	 */
	private $defaults;

	/**
	 * Constructor.
	 *
	 * @since 7.1.0
	 *
	 * @param array $config The base configuration to contribute to.
	 */
	public function __construct( array $config ) {
		$this->config   = $config;
		$this->defaults = $config;
	}

	/**
	 * Returns the current configuration array.
	 *
	 * Deliberately private: filter callbacks receive the container, not the
	 * materialized configuration, so they cannot read the built result and
	 * become coupled to a specific configuration shape or schema version. Only
	 * the class itself reconciles the container back into an array.
	 *
	 * @since 7.1.0
	 *
	 * @return array The configuration.
	 */
	private function get_data() {
		return $this->config;
	}

	/**
	 * Applies the entity view configuration filter and returns the result.
	 *
	 * Exposes the container through the dynamic
	 * `get_entity_view_config_{$kind}_{$name}` filter (with the dynamic portions
	 * lowercased), so that core and third parties can provide the configuration for a specific entity,
	 * then reconciles the filtered container back into a plain configuration array,
	 * limited to the documented configuration keys.
	 *
	 * @since 7.1.0
	 *
	 * @param string $kind The entity kind (e.g. `postType`).
	 * @param string $name The entity name (e.g. `page`).
	 * @return array The filtered configuration, limited to the documented keys.
	 */
	public function apply_filters( $kind, $name ) {
		/**
		 * Filters the view configuration for a given entity.
		 *
		 * The dynamic portions of the hook name, `$kind` and `$name`, refer to the
		 * entity kind (e.g. `postType`) and the entity name (e.g. `page`),
		 * lowercased — so the `postType`/`page` entity maps to the
		 * `get_entity_view_config_posttype_page` hook.
		 *
		 * Callbacks receive a WP_View_Config_Data object and change the
		 * configuration through its methods. Each write method takes the schema
		 * version the change was authored against as its second argument,
		 * and returns the object for chaining:
		 *
		 * - `merge( $patch, $version )` merges a partial change into the current
		 *   configuration. It touches only the top-level keys the patch names, and
		 *   merges each named value into the current one by shape: a scalar
		 *   replaces, an associative array merges key by key, and a list merges by
		 *   member identity (`id`, `slug`, or `field`). A `null` value drops the
		 *   key it names, resetting it to its default.
		 * - `replace( $patch, $version )` applies a patch exactly like `merge()`,
		 *   but swaps any list it names wholesale instead of merging that list by
		 *   member identity.
		 * - `set( $patch, $version )` also touches only the keys the patch names,
		 *   but swaps each named value in wholesale, dropping whatever the key held
		 *   before — for a callback that owns those keys outright.
		 * - `remove( $spec, $version )` deletes named properties. The spec mirrors
		 *   the configuration shape: a list of names deletes entries at that level,
		 *   and a nested map recurses to prune from within a named value, down to
		 *   individual list members.
		 *
		 * A change that declares an unsupported schema version is rejected and does
		 * not alter anything. As with any filter, each callback's return value is
		 * passed to the next callback as `$data`, so callbacks must return the
		 * container they received: a callback that returns nothing, or any other
		 * value, hands that result to every callback hooked at a later priority
		 * instead of the container. Since the write methods return the container,
		 * a callback can end with `return $data->merge( $patch, $version );`.
		 *
		 * @since 7.1.0
		 *
		 * @param WP_View_Config_Data $data   The view configuration container
		 *                                    for the entity, exposing the
		 *                                    `default_view`, `default_layouts`,
		 *                                    `view_list`, and `form` keys.
		 * @param array               $entity {
		 *     The entity the configuration is built for.
		 *
		 *     @type string $kind The entity kind.
		 *     @type string $name The entity name.
		 * }
		 */
		apply_filters(
			wp_get_entity_view_config_hook_name( $kind, $name ),
			$this,
			array(
				'kind' => $kind,
				'name' => $name,
			)
		);

		// Discard any keys the filter introduced that are not part of the
		// documented configuration shape.
		return array_intersect_key( $this->get_data(), array_flip( self::CONFIG_KEYS ) );
	}

	/**
	 * Replaces whole top-level keys, leaving the rest of the configuration alone.
	 *
	 * Like merge() and replace(), set() applies a patch of top-level keys and
	 * touches only the keys the patch names: a key the patch omits keeps whatever
	 * it had, and a `null` value drops the key it names (which resets it to its
	 * default). The difference is depth — where merge() and replace() merge a
	 * named key's value into the current one key by key, set() swaps the whole
	 * value in wholesale, dropping whatever the key held before. A `null` nested
	 * within that value still drops the property it names, so set() honours
	 * nulls at every depth just as merge() and replace() do.
	 *
	 * Use it when a callback owns a key outright and wants to pin it to an exact
	 * shape, without the inherited default leaking through a key-by-key merge.
	 *
	 * A patch that declares an unsupported schema version is rejected and does
	 * not change anything.
	 *
	 * @since 7.1.0
	 *
	 * @param array $patch   The partial configuration whose named keys to replace.
	 * @param int   $version The schema version the patch was authored against.
	 * @return WP_View_Config_Data The instance, for chaining.
	 */
	public function set( array $patch, int $version ) {
		return $this->apply( $patch, $version, __METHOD__, 'set' );
	}

	/**
	 * Removes named properties from the configuration, leaving the rest alone.
	 *
	 * Where merge(), replace(), and set() take a patch of *values* to write,
	 * remove() takes a spec of *names* to delete, and its shape mirrors the
	 * configuration it prunes:
	 *
	 * - A list of names deletes each named entry from the value at that level: a
	 *   key from an associative array, or the member with a matching identity
	 *   (`id`, `slug`, `field`, or a bare scalar) from a list.
	 * - An associative array maps a name to a nested spec, recursing into that
	 *   entry's value to delete from within it.
	 *
	 * Naming a top-level configuration key is the one exception: like a `null`
	 * value in a patch, it resets that key to its default rather than dropping it
	 * outright, so top-level removal and top-level `null` compose the same way.
	 *
	 * So `array( 'default_view' )` resets the whole `default_view` key to its
	 * default, `array( 'default_view' => array( 'sort' ) )` drops just its `sort`
	 * property, and `array( 'default_view' => array( 'fields' => array( 'f2' ) ) )`
	 * drops the `f2` member from its `fields` list. A name that is not present is
	 * ignored, and a list is renumbered after a member is removed.
	 *
	 * A spec that declares an unsupported schema version is rejected and does not
	 * change anything.
	 *
	 * @since 7.1.0
	 *
	 * @param array $spec    The names to remove, keyed to match the configuration shape.
	 * @param int   $version The schema version the spec was authored against.
	 * @return WP_View_Config_Data The instance, for chaining.
	 */
	public function remove( array $spec, int $version ) {
		if ( $version <= 0 || $version > self::LATEST_VERSION ) {
			_doing_it_wrong(
				__METHOD__,
				esc_html__( 'A view configuration patch must declare a supported schema version.' ),
				'7.1.0'
			);

			return $this;
		}

		// A flat list names top-level keys to reset; a map recurses into each
		// named key to prune from within its value.
		$spec_is_list = array_is_list( $spec );
		foreach ( $spec as $spec_key => $spec_value ) {
			$key = $spec_is_list ? $spec_value : $spec_key;

			if ( ! in_array( $key, self::CONFIG_KEYS, true ) ) {
				_doing_it_wrong(
					__METHOD__,
					sprintf(
						/* translators: %s: the configuration key. */
						esc_html__( '"%s" is not a documented view configuration key.' ),
						esc_html( $key )
					),
					'7.1.0'
				);
				continue;
			}

			if ( $spec_is_list ) {
				// Removing a top-level key resets it to its default, just as a
				// null patch value does.
				$this->config[ $key ] = $this->defaults[ $key ] ?? array();
			} elseif ( array_key_exists( $key, $this->config ) ) {
				$this->config[ $key ] = $this->remove_properties( $this->config[ $key ], $spec_value );
			}
		}

		return $this;
	}

	/**
	 * Replaces list values while merging the rest of a partial configuration.
	 *
	 * Takes the same arguments as merge() and applies the patch the same way,
	 * with one difference: a list in the patch replaces the current list
	 * wholesale instead of merging into it by member identity. Associative
	 * arrays still merge key by key, `null` still drops what it names, and a
	 * scalar still replaces the current value.
	 *
	 * It shouldn't be the default choice — a callback that replaces a list
	 * stops inheriting core's future additions to it — but it's useful when a
	 * contributor needs to pin a list to an exact set of members.
	 *
	 * The shape rule applies here too: a patch value whose shape does not match
	 * the current value — an associative array where a list lives, or a
	 * non-empty list where an associative value lives — is rejected with a
	 * notice and leaves the current value unchanged. An empty array is exempt,
	 * so replacing a list with an empty list still clears it.
	 *
	 * A patch that declares an unsupported schema version is rejected and does
	 * not change anything.
	 *
	 * @since 7.1.0
	 *
	 * @param array $patch   The partial configuration to apply.
	 * @param int   $version The schema version the patch was authored against.
	 * @return WP_View_Config_Data The instance, for chaining.
	 */
	public function replace( array $patch, int $version ) {
		return $this->apply( $patch, $version, __METHOD__, 'replace' );
	}

	/**
	 * Merges a partial configuration into the existing one.
	 *
	 * Applies a patch of top-level keys and touches only the keys the patch
	 * names: a key the patch omits keeps whatever it had, and a `null` value
	 * drops the key it names (which resets it to its default). Each named key's
	 * value is then merged into the current one by value shape:
	 *
	 * - a scalar replaces the current value;
	 * - an associative array merges key by key, with a nested `null` deleting
	 *   just the leaf it names;
	 * - a list merges into the current list by member identity.
	 *
	 * Identity is the member's value cast to a string: a bare scalar is its own
	 * identity, and a map is identified by the value of the first of the
	 * well-known identity keys (`id`, `slug`, `field`) it carries. A member
	 * whose identity matches one already present merges into it in place, keeping
	 * its position; a member with no identity is appended to the end of the list.
	 *
	 * For example, given this patch:
	 *
	 * ```php
	 * array(
	 *   'default_view' => array( 'titleField' => 'newTitleField', 'fields' => array( 'newField' ) ),
	 *   'default_layouts' => array( 'grid' => array( 'layout' => array( 'badgeFields' => array( 'newField' ) ) ) ),
	 *   'view_list' => array( array( 'slug' => 'table', 'title' => 'New title' ) ),
	 * )
	 * ```
	 *
	 * - default_view will be updated so the titleField is 'newTitleField' and the newField is appended to the list of fields.
	 * - default_layouts will be updated so that newField is appended to the badgeFields.
	 * - view_list will be updated so that the view with slug 'table' has its title changed to 'New title'.
	 *
	 * A patch value only merges into a current value of the same shape: an
	 * associative array where a list lives, or a non-empty list where an
	 * associative value lives, is rejected with a notice and leaves the current
	 * value unchanged. An empty array merges nothing and is a no-op — clear a
	 * list with replace() and an empty list, or reset a key to its default with
	 * a top-level `null`.
	 *
	 * A patch that declares an unsupported schema version is rejected and does
	 * not change anything.
	 *
	 * @since 7.1.0
	 *
	 * @param array $patch   The partial configuration to merge.
	 * @param int   $version The schema version the patch was authored against.
	 * @return WP_View_Config_Data The instance, for chaining.
	 */
	public function merge( array $patch, int $version ) {
		return $this->apply( $patch, $version, __METHOD__, 'merge' );
	}

	/**
	 * Applies a patch to the configuration, top-level key by top-level key.
	 *
	 * Shared by merge(), replace(), and set(); the three differ only in how the
	 * value of a named key is applied, which is carried by $mode:
	 *
	 * - `merge`   merges the value into the current one, lists by member identity;
	 * - `replace` merges the value in the same way but swaps lists wholesale;
	 * - `set`     swaps the whole value in wholesale, without merging.
	 *
	 * In every mode a top-level `null` resets the key it names to its default, a
	 * nested `null` drops the property it names, and an omitted key is left
	 * untouched, so all three treat nulls the same way at every depth.
	 *
	 * @since 7.1.0
	 *
	 * @param array  $patch   The partial configuration to apply.
	 * @param int    $version The schema version the patch was authored against.
	 * @param string $method  The public method the patch was passed to, for misuse reporting.
	 * @param string $mode    How to apply each named key's value: `merge`, `replace`, or `set`.
	 * @return WP_View_Config_Data The instance, for chaining.
	 */
	private function apply( array $patch, int $version, $method, $mode ) {
		if ( $version <= 0 || $version > self::LATEST_VERSION ) {
			_doing_it_wrong(
				esc_html( $method ),
				esc_html__( 'A view configuration patch must declare a supported schema version.' ),
				'7.1.0'
			);

			return $this;
		}

		foreach ( $patch as $key => $value ) {
			if ( ! in_array( $key, self::CONFIG_KEYS, true ) ) {
				_doing_it_wrong(
					esc_html( $method ),
					sprintf(
						/* translators: %s: the configuration key. */
						esc_html__( '"%s" is not a documented view configuration key.' ),
						esc_html( $key )
					),
					'7.1.0'
				);
				continue;
			}

			// A null patch value makes the top-level property reset to defaults.
			if ( null === $value ) {
				$this->config[ $key ] = $this->defaults[ $key ] ?? array();
				continue;
			}

			// set() swaps the whole value in; merge()/replace() merge it into the
			// current one, differing only in how they treat lists. In every mode a
			// nested null still drops the property it names.
			$this->config[ $key ] = 'set' === $mode
				? $this->strip_nulls( $value )
				: $this->merge_properties( $this->config[ $key ] ?? array(), $value, 'replace' === $mode );
		}

		return $this;
	}

	/**
	 * Recursively drops every property whose value is `null` from a value.
	 *
	 * set() swaps a named key's value in wholesale rather than merging it into
	 * the current one, so it has no existing leaf for a nested `null` to delete
	 * the way merge() and replace() do. Stripping nulls here gives a nested
	 * `null` the same "drop the property it names" meaning under set() that it
	 * carries everywhere else. The same applies to a list replace() swaps in
	 * wholesale. A list is renumbered after a member is removed so removed
	 * entries do not leave gaps.
	 *
	 * @since 7.1.0
	 *
	 * @param mixed $value The value to strip nulls from.
	 * @return mixed The value with every `null` property removed, recursively.
	 */
	private function strip_nulls( $value ) {
		if ( ! is_array( $value ) ) {
			return $value;
		}

		$result = array();
		foreach ( $value as $key => $item ) {
			// A null value drops the property it names.
			if ( null === $item ) {
				continue;
			}

			$result[ $key ] = $this->strip_nulls( $item );
		}

		// Renumber a list so a removed member does not leave a gap.
		return array_is_list( $value ) ? array_values( $result ) : $result;
	}

	/**
	 * Merges an incoming value into the current one, recursing by value shape.
	 *
	 * This is the core of the merge algorithm and is applied at every nesting
	 * level: a scalar (or `null`) in $incoming replaces $current outright, an
	 * associative array merges key by key (recursing here for each key, with a
	 * `null` value deleting that key), and a list either replaces $current
	 * wholesale ($replace_lists) or merges into it by member identity. The
	 * $replace_lists flag is carried down through associative nesting so that,
	 * under replace(), every list reached along the way is swapped wholesale.
	 *
	 * An array in $incoming only merges into a current value of the same shape.
	 * A non-empty mismatch — an associative array where a list lives, or a
	 * non-empty list where an associative value lives — is reported with
	 * _doing_it_wrong() and leaves the current value unchanged, so a malformed
	 * patch cannot silently destroy configuration. An empty array is
	 * shape-ambiguous and merges nothing, so it is a no-op: clearing a list is
	 * spelled replace() with an empty list, and resetting a key is spelled
	 * `null`.
	 *
	 * @since 7.1.0
	 *
	 * @param mixed $current       The current value.
	 * @param mixed $incoming      The incoming value.
	 * @param bool  $replace_lists Whether a list in $incoming replaces the current list
	 *                             wholesale instead of merging into it by member identity.
	 * @return mixed The merged value.
	 */
	private function merge_properties( $current, $incoming, $replace_lists ) {
		// Scalar properties are merged as-is.
		if ( ! is_array( $incoming ) ) {
			return $incoming;
		}

		// Numerical indexed arrays are expected to be lists (sequential integer keys starting at 0).
		if ( array_is_list( $incoming ) ) {
			// A non-empty list only lands where a list (or nothing) lives, under
			// merge() and replace() alike. An empty array is shape-ambiguous and
			// exempt, so replace() with an empty list can still clear a list.
			if ( array() !== $incoming && is_array( $current ) && ! array_is_list( $current ) && array() !== $current ) {
				_doing_it_wrong(
					__METHOD__,
					esc_html__( 'A view configuration patch value must match the shape of the value it patches: a list merges into a list, and an associative array into an associative array.' ),
					'7.1.0'
				);
				return $current;
			}

			// replace() takes an incoming list as-is; merge() merges it by member identity.
			if ( $replace_lists ) {
				// As-is except for nulls: a list swapped in wholesale has no
				// existing leaf for a null to delete (the same rationale as
				// set()), so a null member is dropped rather than stored.
				return $this->strip_nulls( $incoming );
			}

			// An empty list has no members to merge, and an empty array is
			// shape-ambiguous, so merging one is a no-op rather than a reset.
			if ( array() === $incoming ) {
				return $current;
			}

			return $this->merge_list_by_identity(
				is_array( $current ) && array_is_list( $current ) ? $current : array(),
				$incoming
			);
		}

		// Consider any other array as associative (keys are strings).
		if ( is_array( $current ) && array_is_list( $current ) && array() !== $current ) {
			_doing_it_wrong(
				__METHOD__,
				esc_html__( 'A view configuration patch value must match the shape of the value it patches: a list merges into a list, and an associative array into an associative array.' ),
				'7.1.0'
			);
			return $current;
		}

		$result = is_array( $current ) && ! array_is_list( $current ) ? $current : array();
		foreach ( $incoming as $key => $value ) {
			// A null patch value deletes the property.
			if ( null === $value ) {
				unset( $result[ $key ] );
				continue;
			}

			$result[ $key ] = $this->merge_properties(
				array_key_exists( $key, $result ) ? $result[ $key ] : array(),
				$value,
				$replace_lists
			);
		}

		return $result;
	}

	/**
	 * Removes the properties a spec names from the current value.
	 *
	 * The mirror of merge_properties(), applied at every nesting level: a list in
	 * $spec names entries to delete from $current — associative keys are unset,
	 * and list members are matched by identity (list_item_identity) and dropped —
	 * while an associative $spec recurses into each named entry to prune from
	 * within it. A name absent from $current is ignored, and a list is renumbered
	 * after members are removed so it keeps sequential keys.
	 *
	 * @since 7.1.0
	 *
	 * @param mixed $current The current value.
	 * @param mixed $spec    The names to remove from it.
	 * @return mixed The pruned value.
	 */
	private function remove_properties( $current, $spec ) {
		if ( ! is_array( $current ) || ! is_array( $spec ) ) {
			return $current;
		}

		$current_is_list = array_is_list( $current );

		if ( array_is_list( $spec ) ) {
			// Each entry names something to delete from the current value.
			foreach ( $spec as $name ) {
				if ( $current_is_list ) {
					$current = $this->remove_list_member( $current, $name );
				} else {
					unset( $current[ $name ] );
				}
			}
		} else {
			// Each key names an entry to recurse into and prune from within.
			foreach ( $spec as $name => $subspec ) {
				if ( $current_is_list ) {
					foreach ( $current as $index => $member ) {
						if ( $this->list_item_identity( $member ) === (string) $name ) {
							$current[ $index ] = $this->remove_properties( $member, $subspec );
							break;
						}
					}
				} elseif ( array_key_exists( $name, $current ) ) {
					$current[ $name ] = $this->remove_properties( $current[ $name ], $subspec );
				}
			}
		}

		// Renumber so a list from which a member was removed keeps sequential keys.
		return $current_is_list ? array_values( $current ) : $current;
	}

	/**
	 * Removes the first list member matching an identity, leaving the rest.
	 *
	 * @since 7.1.0
	 *
	 * @param array $members  The current list.
	 * @param mixed $identity The identity of the member to remove.
	 * @return array The list with the matching member removed, if any.
	 */
	private function remove_list_member( array $members, $identity ) {
		foreach ( $members as $index => $member ) {
			if ( $this->list_item_identity( $member ) === (string) $identity ) {
				unset( $members[ $index ] );
				break;
			}
		}

		return $members;
	}

	/**
	 * Merges an incoming list into the current one by member identity.
	 *
	 * A member of the incoming list whose identity matches one already present
	 * merges into it in place, keeping its position; an unmatched member is
	 * appended to the end, except a literal `null`, which carries no identity
	 * and holds nothing to merge and so is dropped. An appended member has no
	 * existing leaf for a nested `null` to delete (the same rationale as set()),
	 * so its nulls are stripped rather than stored. A matched member's contents
	 * merge recursively with the same rules (merge_properties), so the
	 * identity-aware merge applies at
	 * any nesting level: each key named by the patch is substituted while the
	 * others are left intact, and a list nested inside a member merges by
	 * identity just like the list it lives in.
	 *
	 * @since 7.1.0
	 *
	 * @param array $current  The current list.
	 * @param array $incoming The incoming list.
	 * @return array The merged list.
	 */
	private function merge_list_by_identity( array $current, array $incoming ) {
		$result = $current;
		foreach ( $incoming as $item ) {
			// A null member carries no identity and holds nothing to merge,
			// so it is dropped rather than appended as a literal null.
			if ( null === $item ) {
				continue;
			}

			$identity = $this->list_item_identity( $item );

			// Find the index of the existing member with the same identity, if any.
			// If there's none, append the incoming member to the end of the list.
			$index = null;
			if ( null !== $identity ) {
				foreach ( $result as $i => $existing ) {
					if ( $this->list_item_identity( $existing ) === $identity ) {
						$index = $i;
						break;
					}
				}
			}
			if ( null === $index ) {
				// An appended member has no existing leaf for a nested null to
				// delete, so nulls are dropped rather than stored.
				$result[] = $this->strip_nulls( $item );
				continue;
			}

			// Otherwise, merge the incoming member into the existing one in place.
			$result[ $index ] = $this->merge_properties( $result[ $index ], $item, false );
		}

		return $result;
	}

	/**
	 * Resolves the identity used to match a list member against another.
	 *
	 * The identity is simply the member's value cast to a string, regardless of
	 * which key carries it: a bare scalar is its own identity, and a map is
	 * identified by the value of the first of the well-known identity keys
	 * (`id`, `slug`, `field`) it carries. Because the key is not part of
	 * the identity, a bare field like `'f3'` matches any map carrying that
	 * value, whether it appears as `array( 'id' => 'f3' )`,
	 * `array( 'slug' => 'f3' )`, and so on — this lets the same shorthand target
	 * lists keyed by different fields. Casting to string keeps numeric
	 * identities matching whether they arrive as an int or a string. Anything
	 * else (e.g. a nested list) has no identity and never matches, so it is
	 * always appended.
	 *
	 * @since 7.1.0
	 *
	 * @param mixed $item The list member.
	 * @return string|null The identity, or null when the member has none.
	 */
	private function list_item_identity( $item ) {
		if ( is_scalar( $item ) ) {
			return (string) $item;
		}

		if ( is_array( $item ) && ! array_is_list( $item ) ) {
			foreach ( array( 'id', 'slug', 'field' ) as $key ) {
				if ( isset( $item[ $key ] ) && is_scalar( $item[ $key ] ) ) {
					return (string) $item[ $key ];
				}
			}
		}

		return null;
	}
}

Current_dir [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]

Current_dir [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
12 Sep 2026 11.58 AM
blackpussy06 / nobody
0777
ID3
--
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0755
IXR
--
26 Feb 2026 8.18 PM
blackpussy06 / blackpussy06
0755
PHPMailer
--
22 Jan 2026 12.58 AM
blackpussy06 / blackpussy06
0755
Requests
--
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0755
SimplePie
--
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0755
Text
--
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0755
abilities-api
--
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0755
ai-client
--
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0755
assets
--
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0755
block-bindings
--
26 Feb 2026 8.17 PM
blackpussy06 / blackpussy06
0755
block-patterns
--
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0755
block-supports
--
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0755
blocks
--
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0755
build
--
19 Jun 2026 6.33 PM
blackpussy06 / blackpussy06
0755
certificates
--
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0755
css
--
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0755
customize
--
26 Feb 2026 8.16 PM
blackpussy06 / blackpussy06
0755
fonts
--
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0755
html-api
--
26 Feb 2026 8.16 PM
blackpussy06 / blackpussy06
0755
images
--
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0755
interactivity-api
--
26 Feb 2026 8.17 PM
blackpussy06 / blackpussy06
0755
js
--
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0755
l10n
--
26 Feb 2026 8.17 PM
blackpussy06 / blackpussy06
0755
php-ai-client
--
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0755
php-compat
--
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0755
pomo
--
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0755
rest-api
--
26 Feb 2026 8.18 PM
blackpussy06 / blackpussy06
0755
sitemaps
--
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0755
sodium_compat
--
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0755
style-engine
--
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0755
theme-compat
--
26 Feb 2026 8.16 PM
blackpussy06 / blackpussy06
0755
widgets
--
22 Jan 2026 1.00 AM
blackpussy06 / blackpussy06
0755
abilities-api.php
32.031 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
abilities.php
11.521 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
admin-bar.php
39.128 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
ai-client.php
2.489 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
atomlib.php
11.896 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
author-template.php
19.379 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
block-bindings.php
7.453 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
block-editor.php
28.051 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
block-i18n.json
0.309 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
block-patterns.php
15.24 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
block-template-utils.php
61.688 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
block-template.php
17.829 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
blocks.php
121.294 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
bookmark-template.php
12.469 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
bookmark.php
15.065 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
cache-compat.php
10.763 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
cache.php
13.17 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
canonical.php
33.971 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
capabilities.php
42.563 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
category-template.php
55.654 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
category.php
12.533 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-IXR.php
2.548 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-avif-info.php
29.305 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-feed.php
0.526 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
class-http.php
0.358 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
class-json.php
42.652 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
class-oembed.php
0.392 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
class-phpass.php
6.612 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
class-phpmailer.php
0.648 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
class-pop3.php
20.605 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-requests.php
2.185 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
class-simplepie.php
0.442 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
class-smtp.php
0.446 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
class-snoopy.php
36.831 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
class-walker-category-dropdown.php
2.411 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
class-walker-category.php
8.278 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
class-walker-comment.php
13.888 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
class-walker-nav-menu.php
11.762 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
class-walker-page-dropdown.php
2.646 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
class-walker-page.php
7.434 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
class-wp-admin-bar.php
17.58 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-ajax-response.php
5.164 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-application-passwords.php
16.698 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
class-wp-block-bindings-registry.php
8.069 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-block-bindings-source.php
2.922 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
class-wp-block-editor-context.php
1.318 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
class-wp-block-list.php
4.603 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
class-wp-block-metadata-registry.php
11.568 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-block-parser-block.php
2.495 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
class-wp-block-parser-frame.php
1.947 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-block-parser.php
11.255 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-block-pattern-categories-registry.php
4.28 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-block-patterns-registry.php
10.024 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-block-processor.php
68.275 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-block-styles-registry.php
6.269 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-block-supports.php
7.4 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-block-template.php
2.062 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-block-templates-registry.php
6.914 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-block-type-registry.php
5.181 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-block-type.php
16.818 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-block.php
27.574 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-classic-to-block-menu-converter.php
3.932 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-comment-query.php
47.891 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-comment.php
16.845 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-connector-registry.php
14.825 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-customize-control.php
25.5 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-customize-manager.php
198.152 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-customize-nav-menus.php
56.674 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-customize-panel.php
10.452 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-customize-section.php
10.946 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
class-wp-customize-setting.php
29.254 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-customize-widgets.php
70.895 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-date-query.php
35.127 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-dependencies.php
16.688 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-dependency.php
2.591 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-duotone.php
39.879 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-editor.php
70.535 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-embed.php
15.535 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-error.php
7.338 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-exception.php
0.247 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
class-wp-fatal-error-handler.php
7.959 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
class-wp-feed-cache-transient.php
3.227 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
class-wp-feed-cache.php
0.946 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
class-wp-filter-sentinel.php
0.742 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-hook.php
17.063 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-http-cookie.php
7.099 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-http-curl.php
12.95 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
class-wp-http-encoding.php
6.532 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
class-wp-http-ixr-client.php
3.434 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-http-proxy.php
5.84 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
class-wp-http-requests-hooks.php
1.975 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
class-wp-http-requests-response.php
4.144 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-http-response.php
2.907 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
class-wp-http-streams.php
16.371 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-http.php
40.665 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-icon-collections-registry.php
5.669 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-icons-registry.php
9.671 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-image-editor-gd.php
20.255 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-image-editor-imagick.php
42.436 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-image-editor.php
17.047 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-list-util.php
7.269 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
class-wp-locale-switcher.php
6.617 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
class-wp-locale.php
16.453 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-matchesmapregex.php
1.785 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
class-wp-meta-query.php
29.792 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-metadata-lazyloader.php
6.673 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
class-wp-navigation-fallback.php
8.978 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
class-wp-network-query.php
19.521 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-network.php
12.12 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-object-cache.php
17.113 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
class-wp-oembed-controller.php
6.743 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
class-wp-oembed.php
33.566 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-paused-extensions-storage.php
4.948 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-phpmailer.php
4.246 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
class-wp-plugin-dependencies.php
24.618 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-post-type.php
29.953 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-post.php
8.6 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-query.php
160.301 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-recovery-mode-cookie-service.php
6.716 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
class-wp-recovery-mode-email-service.php
10.9 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-recovery-mode-key-service.php
4.799 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-recovery-mode-link-service.php
3.44 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-recovery-mode.php
11.191 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-rewrite.php
62.2 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-role.php
2.464 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
class-wp-roles.php
9.107 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-script-modules.php
39.788 KB
6 Aug 2026 7.17 PM
blackpussy06 / blackpussy06
0644
class-wp-scripts.php
35.893 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-session-tokens.php
7.147 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
class-wp-simplepie-file.php
3.469 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
class-wp-simplepie-sanitize-kses.php
1.858 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-site-query.php
30.744 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-site.php
7.652 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-speculation-rules.php
7.699 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-styles.php
13.004 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-tax-query.php
19.118 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
class-wp-taxonomy.php
18.124 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
class-wp-term-query.php
39.796 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-term.php
5.14 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-text-diff-renderer-inline.php
0.956 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
class-wp-text-diff-renderer-table.php
18.481 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-textdomain-registry.php
10.235 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
class-wp-theme-json-data.php
1.763 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-theme-json-resolver.php
34.855 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-theme-json-schema.php
7.194 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
class-wp-theme-json.php
216.314 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-theme.php
64.269 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-token-map.php
28.352 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-url-pattern-prefixer.php
4.689 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
class-wp-user-meta-session-tokens.php
2.885 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-user-query.php
43.068 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-user-request.php
2.287 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-user.php
22.646 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-view-config-data.php
28.737 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-walker.php
12.98 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-widget-factory.php
3.265 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-widget.php
18.02 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp-xmlrpc-server.php
211.203 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class-wp.php
25.753 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wpdb.php
118.591 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
class.wp-dependencies.php
0.364 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
class.wp-scripts.php
0.335 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
class.wp-styles.php
0.33 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
comment-template.php
100.792 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
comment.php
147.1 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
compat-utf8.php
18.932 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
compat.php
21.952 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
connectors.php
32.15 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
cron.php
45.182 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
date.php
0.391 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
default-constants.php
11.099 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
default-filters.php
38.574 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
default-widgets.php
2.234 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
deprecated.php
189.431 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
embed-template.php
0.33 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
embed.php
38.296 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
error-protection.php
3.996 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
error_log
1.33 MB
9 Sep 2026 1.42 PM
blackpussy06 / blackpussy06
0644
feed-atom-comments.php
5.375 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
feed-atom.php
3.041 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
feed-rdf.php
2.605 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
feed-rss.php
1.161 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
feed-rss2-comments.php
4.039 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
feed-rss2.php
3.71 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
feed.php
24.599 KB
3 Feb 2026 7.18 PM
blackpussy06 / blackpussy06
0644
fonts.php
9.56 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
formatting.php
349.27 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
functions.php
288.556 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
functions.wp-scripts.php
20.012 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
functions.wp-styles.php
8.451 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
general-template.php
179.172 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
global-styles-and-settings.php
20.293 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
http.php
28.282 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
https-detection.php
5.72 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
https-migration.php
4.63 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
icons.php
6.186 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
json-schema.php
7.619 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
kses.php
86.423 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
l10n.php
69.741 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
link-template.php
156.39 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
load.php
55.151 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
locale.php
0.158 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
media-template.php
64.218 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
media.php
231.254 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
meta.php
65.175 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
ms-blogs.php
25.707 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
ms-default-constants.php
4.806 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
ms-default-filters.php
6.48 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
ms-deprecated.php
21.276 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
ms-files.php
2.79 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
ms-functions.php
90.361 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
ms-load.php
19.585 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
ms-network.php
3.693 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
ms-settings.php
4.099 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
ms-site.php
40.751 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
nav-menu-template.php
25.374 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
nav-menu.php
43.231 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
option.php
102.779 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
pluggable-deprecated.php
6.176 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
pluggable.php
124.921 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
plugin.php
35.81 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
post-formats.php
6.904 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
post-template.php
67.509 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
post-thumbnail-template.php
10.624 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
post.php
298.062 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
query.php
36.674 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
registration-functions.php
0.195 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
registration.php
0.195 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
rest-api.php
100.538 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
revision.php
30.509 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
rewrite.php
19.108 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
robots-template.php
5.063 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
rss-functions.php
0.271 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
rss.php
22.659 KB
21 Jan 2026 7.20 PM
blackpussy06 / blackpussy06
0644
script-loader.php
159.717 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
script-modules.php
12.022 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
session.php
0.252 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
shortcodes.php
23.471 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
sitemaps.php
3.162 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
speculative-loading.php
11.602 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
spl-autoload-compat.php
0.431 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
style-engine.php
7.856 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
taxonomy.php
174.128 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
template-canvas.php
0.531 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
template-loader.php
4.167 KB
11 Mar 2026 7.17 AM
blackpussy06 / blackpussy06
0644
template.php
35.961 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
theme-i18n.json
1.848 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
theme-previews.php
2.819 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
theme-templates.php
3.965 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
theme.json
9.258 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
theme.php
131.485 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
update.php
37.372 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
user.php
176.075 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
utf8.php
6.813 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
vars.php
6.445 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
version.php
1.075 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
view-config.php
18.64 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
view-transitions.php
0.588 KB
21 May 2026 7.18 AM
blackpussy06 / blackpussy06
0644
widgets.php
69.205 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644
wp-db.php
0.435 KB
21 Jan 2026 6.08 PM
blackpussy06 / blackpussy06
0644
wp-diff.php
0.773 KB
20 Aug 2026 9.18 AM
blackpussy06 / blackpussy06
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF