Resources.php
1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
namespace WPML\Core\WP\App;
use WPML\FP\Fns;
use WPML\FP\Obj;
use WPML\LIB\WP\Nonce;
use function WPML\FP\partial;
class Resources {
// enqueueApp :: string $app -> ( string $localizeData )
public static function enqueueApp( $app ) {
return function( $localize = null, $dependencies = [] ) use ( $app ) {
\WPML\LIB\WP\App\Resources::enqueueWithDeps( $app, ICL_PLUGIN_URL, WPML_PLUGIN_PATH, ICL_SITEPRESS_VERSION, 'sitepress', $localize, $dependencies );
};
}
/**
* @param string $name
* @param mixed $value
*/
public static function enqueueGlobalVariable( $name, $value ) {
$print_javascript_variable = function() use ( $name, $value ) {
$value = Obj::over(
Obj::lensPath( [ 'endpoints' ] ),
Fns::map( function ( $endpoint ) {
return [
'endpoint' => $endpoint,
'nonce' => Nonce::create( $endpoint )
];
} ),
$value
);
echo "<script type=\"text/javascript\">\n";
echo $name . ' = ' . json_encode( $value );
echo "</script>\n";
};
add_action('wp_print_scripts', $print_javascript_variable, 0);
}
}