/
home
/
u303693141
/
public_html
/
wp-content
/
plugins
/
tidio-live-chat
/
src
/
Admin
/
Upload File
HOME
<?php namespace TidioLiveChat\Admin; if (!defined('WPINC')) { die('File loaded directly. Exiting.'); } use TidioLiveChat\Utils\QueryParameters; class NonceValidator { /** * @param string $nonce * @return bool */ public function isRequestNonceValid($nonce) { if (!QueryParameters::has('_wpnonce')) { return false; } return (bool) wp_verify_nonce(QueryParameters::get('_wpnonce'), $nonce); } }