skumar / wpnonce_oops
Wordpress nonce functions implemented in object oriented way
dev-master
2020-01-23 03:16 UTC
Requires
- php: >=7.0.0
Requires (Dev)
- brain/monkey: 2.*
- inpsyde/php-coding-standards: ^0.13.4
- mockery/mockery: ~0.9
- phpunit/phpunit: ^7.5
This package is auto-updated.
Last update: 2025-03-23 14:59:44 UTC
README
Simple WordPress Nonce package that serves the purpose of working with Wordpress Nonces in an object oriented way. Package also comes with Unit Tests to test the nonces. The tests use Brain\Monkey to run and pass in isolation.
Table Of Contents
Installation
The best way to use this package is through Composer: Extract the files and copy in vendor folder
$ composer install or update
Run the tests:
$ vendor/bin/phpunit
Requirements
This package requires PHP 7.0 or higher.
Usage
<?php namespace WpnonceOops; $wn = new WpnonceOops; // create nonce object $action = 'url-post'; $nonce = $wn->generateNonce($action); // get nonce url $actionurl = 'test.php?'; $url = $wn->createNonceUrl( $actionurl, $action, '_wpnonce' ); // verify nonce $verify_nonce = $wn->verifyNonce( $nonce, $action); // get nonce form field $field = 'form_generate_nonce'; $field = $wn->creatNonceField($action, $field);
License
Copyright (c) 2020 Skumar
Contributing
All feedback / bug reports / pull requests are welcome.