File: /var/www/delta/wp-content/plugins/sitepress-multilingual-cms/classes/utilities/Resources.php
<?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 {
const VENDOR = 'wpml-vendor';
private static $script_vendor_registered = false;
// enqueueApp :: string $app -> ( string $localizeData )
public static function enqueueApp( $app ) {
return function( $localize = null, $dependencies = [] ) use ( $app ) {
$dependencies = array_merge( [ self::vendorAsDependency() ], $dependencies );
\WPML\LIB\WP\App\Resources::enqueueWithDeps( $app, ICL_PLUGIN_URL, WPML_PLUGIN_PATH, ICL_SITEPRESS_SCRIPT_VERSION, 'sitepress', $localize, $dependencies );
};
}
public static function enqueueAppWithoutVendor( $app ) {
return function( $localize = null, $dependencies = [] ) use ( $app ) {
\WPML\LIB\WP\App\Resources::enqueueWithDeps( $app, ICL_PLUGIN_URL, WPML_PLUGIN_PATH, ICL_SITEPRESS_SCRIPT_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);
}
private static function registerVendor() {
if( self::$script_vendor_registered ) {
return;
}
self::$script_vendor_registered = true;
wp_register_script(
self::VENDOR,
ICL_PLUGIN_URL . '/dist/js/vendor/app.js', [],
ICL_SITEPRESS_SCRIPT_VERSION
);
}
public static function vendorAsDependency() {
self::registerVendor();
return self::VENDOR;
}
}