Download the PHP package radix/nonce-oop without Composer
On this page you can find all versions of the php package radix/nonce-oop. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download radix/nonce-oop
More information about radix/nonce-oop
Files in radix/nonce-oop
Package nonce-oop
Short Description Wordpress Nonce OOP
License MIT
Homepage https://github.com/radixs/nonce-oop
Informations about the package nonce-oop
NonceOop
This is an oop wrapper for wordpress nonces functionality.
Installation
If you have not done that already add composer autoloader to your wordpress main index.php:
Add to your composer.json
in require
this: "radix/nonce-oop": "1.0
and run composer update
.
Usage
Initialize the facade.
At the beginning of the file you want to use nonces in put:
then you can instantiate a common facade via:
Without a second argument it will use the default SimpleNonce
variant. If you want you can also use RequestNonce
and AjaxNonce
, just add them to the use
declaration and inject their insances into the facade like that:
Use the interface.
After that is done you have four methods that you can use:
The methods wrap original WordPress nonce functions.
- create method creates a simple 10-character string,
- createField method gives you HTML string containing hidden input field with a nonce in it. Refer to the method interface to see what options you can use.
- createUrl method gives you an URL with a nonce appended to URL's query. Refer to the method interface to see what options you can use.
- check method validates the nonce. When used with
SimpleNonce
it only checks the string, other classes check the $_REQUEST superglobal.
Extending
You can add your own class that implements NonceServiceInterface
and inject it into the facade on initialization.
Tests
In order to run tests type:
Please note that you need to have PHPUnit installed.