Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
flexible-shipping-pro
/
vendor_prefixed
/
wpdesk
/
wp-forms
/
src
/
Validator
:
NonceValidator.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace FSProVendor\WPDesk\Forms\Validator; use FSProVendor\WPDesk\Forms\Validator; class NonceValidator implements \FSProVendor\WPDesk\Forms\Validator { private $action; public function __construct($action) { $this->action = $action; } public function is_valid($value) { $valid = \wp_verify_nonce($value, $this->action); return $valid; } public function get_messages() { return []; } }