retrieving user that makes the purchase with nonce ok

This commit is contained in:
asus
2024-02-24 17:40:33 +01:00
parent 61b3f9f2f5
commit 1464562379
3 changed files with 7 additions and 3 deletions

View File

@@ -58,9 +58,11 @@ class PLGNTLS_class
{
// add ajax file at beginning of files list
array_unshift($scripts_arr, "utils/plugin_ajax.js");
$nonce = array("ajax_nonce" => wp_create_nonce('wp-pageviews-nonce'));
$ajax_nonce = array("ajax_nonce" => wp_create_nonce('wp-pageviews-nonce'));
$rest_nonce = array("rest_nonce" => wp_create_nonce('wp_rest'));
$ajax_url = array("ajax_url" => admin_url('admin-ajax.php'));
$vars = array_merge($vars, $nonce);
$vars = array_merge($vars, $ajax_nonce);
$vars = array_merge($vars, $rest_nonce);
$vars = array_merge($vars, $ajax_url);
}
$fetch_url = array("fetch_url" => get_site_url() . "/wp-json");
@@ -198,10 +200,10 @@ class PLGNTLS_class
}
/*
* uncomment to print all enqueued scripts, can be usefull
*/
global $wp_scripts;
error_log("wp_scripts->queue:");
error_log(json_encode($wp_scripts->queue));
*/
}
private function check_dependencies(&$script, $previous_basename)