PHP 8.2.31
Preview: SanitizationUtils.php Size: 794 B
/home/nshryvcy/taramarriagebureau.com/wp-content/plugins/woocommerce/src/StoreApi/Utilities/SanitizationUtils.php

<?php
namespace Automattic\WooCommerce\StoreApi\Utilities;

/**
 * SanitizationUtils class.
 * Helper class which sanitizes customer info.
 */
class SanitizationUtils {

	/**
	 * Runs wp_kses on an array. This function runs wp_kses on strings in the array and recurses into arrays.
	 *
	 * @param  array $array The array to run wp_kses on.
	 * @return mixed       The array, all string keys will have been run through wp_kses.
	 */
	public function wp_kses_array( array $array ) {
		foreach ( $array as $key => $value ) {
			if ( empty( $value ) ) {
				$array[ $key ] = $value;
				continue;
			}
			if ( is_array( $value ) ) {
				$array[ $key ] = $this->wp_kses_array( $value );
			}
			if ( is_string( $value ) ) {
				$array[ $key ] = wp_kses( $value, [] );
			}
		}
		return $array;
	}
}

Directory Contents

Dirs: 0 × Files: 18

Name Size Perms Modified Actions
1.49 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
47.46 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
10.24 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
1.76 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
5.07 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
2.85 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
2.02 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
3.25 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
27.25 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
2.05 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
3.58 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
2.95 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
18.96 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
8.01 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
9.87 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
6.14 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
794 B lrw-r--r-- 2026-03-03 06:25:16
Edit Download
1.73 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download

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