# wplingua/2.16.6/inc/parser/js.php

Translate and Go multilingual – Automatic AI translation – wpLingua, version 2.16.6. 228 lines.

- Page: https://pluginprobe.com/plugins/wplingua/2.16.6/code/inc/parser/js.php
- Raw: https://pluginprobe.com/plugins/wplingua/2.16.6/raw/inc/parser/js.php
- Modified: 2026-09-11T17:18:08+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wplingua/2.16.6/code/inc/parser/js.php#L10-L20`.

```php
<?php

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
	die;
}


/**
 * wpLingua Parser : Get texts in a JS script
 *
 * @param string $js
 * @return array Texts
 */
function wplng_parse_js( $js ) {

	$js = trim( $js );

	// Check if $JS is empty or is wp emoji script
	if ( '' === $js
		|| wplng_str_contains( $js, '_wpemojiSettings' )
	) {
		return array();
	}

	$texts = array_merge(
		wplng_parse_js_json_in_var( $js ),
		wplng_parse_js_json_encoded_as_url( $js ),
		wplng_parse_js_json_in_function_call( $js ),
	);

	if ( wplng_str_is_script_i18n( $js ) ) {
		$texts = array_merge(
			$texts,
			wplng_parse_js_json_in_i18n_script( $js )
		);
	}

	return $texts;
}


/**
 * Parse JSON contained in 'var', 'let' or 'window._'
 *
 * @param string $js
 * @return array Texts
 */
function wplng_parse_js_json_in_var( $js ) {

	$texts = array();
	$json  = array();

	preg_match_all(
		'#(var\s|let\s|window\._)([A-Za-z0-9_]+)\s?=\s?(\{(?:[^{}"\'\\\\]+|"(?:\\\\.|[^"\\\\])*"|\'(?:\\\\.|[^\'\\\\])*\'|(?3))*\}|\[(?:[^\[\]"\'\\\\]+|"(?:\\\\.|[^"\\\\])*"|\'(?:\\\\.|[^\'\\\\])*\'|(?3))*\])\s*;#Us',
		$js,
		$json
	);

	if ( ! empty( $json[2] ) && is_array( $json[2] ) ) {
		foreach ( $json[2] as $key => $var_name ) {

			$var_name = trim( $var_name );

			if ( empty( $var_name ) || empty( $json[3][ $key ] ) ) {
				continue;
			}

			$var_json = trim( $json[3][ $key ] );

			$texts = array_merge(
				$texts,
				wplng_parse_json(
					$var_json,
					array( $var_name )
				)
			);

		}
	}

	return $texts;
}


/**
 * Parse JSON in i18n script
 *
 * You can use wplng_parse_js_json_in_i18n_script( $js )
 * to check if the string is a i18n script
 *
 * @param string $js
 * @return array Texts
 */
function wplng_parse_js_json_in_i18n_script( $js ) {

	$texts = array();
	$json  = array();

	preg_match_all(
		'#\(\s?["\'](.*)["\'],\s?(.*)\s?\);#Ui',
		$js,
		$json
	);

	if ( ! empty( $json[1] ) && is_array( $json[1] ) ) {
		foreach ( $json[1] as $key => $var_name ) {

			$var_name = trim( $var_name );

			if ( empty( $var_name ) || empty( $json[2][ $key ] ) ) {
				continue;
			}

			$var_json = trim( $json[2][ $key ] );

			$texts = array_merge(
				$texts,
				wplng_parse_json(
					$var_json,
					array( 'i18n_script', $var_name )
				)
			);

		}
	}

	return $texts;
}


/**
 * Parse JSON encoded as URL
 *
 * @param string $js
 * @return array Texts
 */
function wplng_parse_js_json_encoded_as_url( $js ) {

	$texts = array();
	$json  = array();

	preg_match_all(
		'#(var\s|let\s|window\._)([A-Za-z0-9_]+)\s?=\s?JSON\.parse\(\sdecodeURIComponent\(\s\'(.*)\'\s\)\s\)#Ui',
		$js,
		$json
	);

	if ( ! empty( $json[2] ) && is_array( $json[2] ) ) {
		foreach ( $json[2] as $key => $var_name ) {

			$var_name = trim( $var_name );

			if ( empty( $var_name ) || empty( $json[3][ $key ] ) ) {
				continue;
			}

			$encoded_json = trim( $json[3][ $key ] );
			$var_json     = urldecode( $encoded_json );

			$texts = array_merge(
				$texts,
				wplng_parse_json(
					$var_json,
					array( 'encoded_as_url', $var_name )
				)
			);
		}
	}

	return $texts;
}


/**
 * Parse JSON passed as argument to function calls like jQuery.datepicker.setDefaults({...})
 *
 * @param string $js
 * @return array Texts
 */
function wplng_parse_js_json_in_function_call( $js ) {

	$texts = array();
	$json  = array();

	// Whitelist of function calls that contain translatable JSON
	$allowed_functions = wplng_data_json_in_js_functions();

	if ( empty( $allowed_functions ) ) {
		return array();
	}

	preg_match_all(
		'#([a-zA-Z_$][a-zA-Z0-9_$]*(?:\.[a-zA-Z_$][a-zA-Z0-9_$]*)+)\s*\(\s*(\{(?:[^{}"\'\\\\]+|"(?:\\\\.|[^"\\\\])*"|\'(?:\\\\.|[^\'\\\\])*\'|(?2))*\})\s*\)#Us',
		$js,
		$json
	);

	if ( ! empty( $json[1] ) && is_array( $json[1] ) ) {
		foreach ( $json[1] as $key => $func_name ) {

			$func_name = trim( $func_name );

			// Skip if not in whitelist
			if ( ! in_array( $func_name, $allowed_functions, true ) ) {
				continue;
			}

			if ( empty( $json[2][ $key ] ) ) {
				continue;
			}

			$var_json = trim( $json[2][ $key ] );

			$texts = array_merge(
				$texts,
				wplng_parse_json(
					$var_json,
					array( $func_name )
				)
			);

		}
	}

	return $texts;
}

```
