Download the PHP package mahdy/wpnonce without Composer
On this page you can find all versions of the php package mahdy/wpnonce. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download mahdy/wpnonce
More information about mahdy/wpnonce
Files in mahdy/wpnonce
Package wpnonce
Short Description running wordpress nonce in opject orianted manner
License MIT
Homepage https://github.com/mahdy-nasr/WpNonce
Informations about the package wpnonce
WpNonce
Wordpress nonce in an object-oriented manner
Usage
this package used instead of wpnonce*() functions in WordPress. it built in an object-oriented way and also make the code more readable.
Environment
it tested against WordPress v4.9.
Installation
either via direct composer command :
or via editing composer.json file and then use composer update
How to use
the package used for generating and verifying the WordPress Nonce.
Set the Action
1- via constructor
2- via setter function
Set the name (Optional)
It used for URL and form field. The default value is "_wpnonce"
Generate the Nonce string
1- Exciplicitly
2- As string
Generate the Nonce URL
Generate Nonce Field in form
It take 2 optional parametars: generateNonceField($referer = true, $echo = true)
Verifying Nonce string
it return 1 if the nonce generated in last 12h and 2 if it generated in last 24h
Verify Nonce from submitted
Verifying using checkAdminReferer($action, $input_name = "_wpnonce") function.
Verify Ajax requist
the function checkAjaxReferer($action, $arg_name = false, $die = true) has 2 optional parametars.
Running the UnitTest
1- you have first to install PHPUnit
2- open the package folder: vendor/mahdy/wpnonce change to this directory to run the phpunit
3- before run change the vendor/mahdy/wpnonce/bootstrap.php and change the WORDPRESS_PATH to your WordPress installation directory.
4- in command line from package directory run