Download the PHP package ympervej/wp-oop-nonces-csrf without Composer
On this page you can find all versions of the php package ympervej/wp-oop-nonces-csrf. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ympervej/wp-oop-nonces-csrf
More information about ympervej/wp-oop-nonces-csrf
Files in ympervej/wp-oop-nonces-csrf
Package wp-oop-nonces-csrf
Short Description This package enables the wordpress nonce function in an object-oriented environment
License
Informations about the package wp-oop-nonces-csrf
WordPress Nonces in OOP Environment
A composer package, which serves the functionality working with WordPress Nonces in an object orientated environment.
Requirement
Installation
Add this package as requirement at your composer.json file and then run 'composer update'
Or directly run
Usage
add to your functions.php, in the active theme
Examples
Create a nonce
This will creates a cryptographic token tied to a specific action
####### Arguments string or int $action Scalar value to add context to the nonce. ####### Return The token.
For example:
Verify a nonce
Verify that correct nonce was used with time limit.
####### Arguments $nonce and $action. ####### Return Boolean or 1.
Add a nonce to a URL
Retrieve URL with nonce added to URL query.
####### Arguments $action_url and $action and $name. ####### Return Escaped URL with nonce action added.
Add a nonce to a form
Retrieve URL with nonce added to URL query.
####### Arguments action, $name, $referer, $echo. ####### Return Nonce field HTML markup.
Ajax Nonce Verification
Verify a nonce passed in an AJAX request
####### Arguments $action, $query_arg, $die. ####### Return Boolean or 1.
Admin Nonce Verification.
Makes sure that a user was referred from another admin page.
####### Arguments $action, $query_arg. ####### Return Boolean or 1.
Display Nonce Action Message.
This will display 'Are you sure you want to do this?' message to confirm the action being taken.
####### Arguments $action. ####### Return Boolean or 1.
Retrieve or display referer hidden field for forms.
The referer link is the current Request URI from the server super global.
####### Arguments $echo Boolean. ####### Return Referer field HTML markup.
How to run Unit Tests
-
In Terminal Run this
-
Install PHP Unit on dev
-
Copy the Test Directory from "/vendor/ympervej/wp-oop-nonces-csrf/tests" to "your-theme-folder/wp-oop-nonces-csrf"
-
Run Composer Update
-
Run This in Terminal to test
- You can also test with this