WP_Theme_JSON::flatten_tree()protected staticWP 5.8.0

Given a tree, it creates a flattened one by merging the keys and binding the leaf values to the new keys.

It also transforms camelCase names into kebab-case and substitutes '/' by '-'.

This is thought to be useful to generate CSS Custom Properties from a tree, although there's nothing in the implementation of this function that requires that format.

For example, assuming the given prefix is '--wp' and the token is '--', for this input tree:

{
  'some/property': 'value',
  'nestedProperty': {
	'sub-property': 'value'
  }
}

it'll return this output:

{
  '--wp--some-property': 'value',
  '--wp--nested-property--sub-property': 'value'
}

Метод класса: WP_Theme_JSON{}

Хуков нет.

Возвращает

Массив. The flattened tree.

Использование

$result = WP_Theme_JSON::flatten_tree( $tree, $prefix, $token );
$tree(массив) (обязательный)
Input tree to process.
$prefix(строка)
Prefix to prepend to each variable.
По умолчанию: empty string
$token(строка)
Token to use between levels.
По умолчанию: '--'

Список изменений

С версии 5.8.0 Введена.

Код WP_Theme_JSON::flatten_tree() WP 6.5.2

protected static function flatten_tree( $tree, $prefix = '', $token = '--' ) {
	$result = array();
	foreach ( $tree as $property => $value ) {
		$new_key = $prefix . str_replace(
			'/',
			'-',
			strtolower( _wp_to_kebab_case( $property ) )
		);

		if ( is_array( $value ) ) {
			$new_prefix        = $new_key . $token;
			$flattened_subtree = static::flatten_tree( $value, $new_prefix, $token );
			foreach ( $flattened_subtree as $subtree_key => $subtree_value ) {
				$result[ $subtree_key ] = $subtree_value;
			}
		} else {
			$result[ $new_key ] = $value;
		}
	}
	return $result;
}