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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

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

  1. In Terminal Run this

  2. Install PHP Unit on dev

  3. Copy the Test Directory from "/vendor/ympervej/wp-oop-nonces-csrf/tests" to "your-theme-folder/wp-oop-nonces-csrf"

  4. Run Composer Update

  5. Run This in Terminal to test

  6. You can also test with this

Thanks to

License

MIT


All versions of wp-oop-nonces-csrf with dependencies

PHP Build Version
Package Version
Requires php Version >=5.6.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package ympervej/wp-oop-nonces-csrf contains the following files

Loading the files please wait ....