pebo/wp_nonce_helper

basic support class for wordpress nonce ussage

dev-master 2018-03-30 12:52 UTC

This package is not auto-updated.

Last update: 2025-08-09 15:00:24 UTC


README

Helper clas for handling nonces on WorPress.

Ussage:

to include this class in to your project:

  • download or clone this project and place the file Pebo_wp_nonce_helper.php in to your library folder (inside your project).
  • include the class in your code file:
include_once dirname(__FILE__).'/you_library_path/Pebo_wp_nonce_helper.php';
  • Or using composer:
  •     composer require pebo/wp_nonce_helper=dev-master
      
  • Then call methods using the formula:
Pebo_wp_nonce_helper.php::method_name($args ...);

Functionality:

Setting nonces life time:

Pebo_wp_nonce_helper.php::set_nonce_duration($time_in_secconds);

Creating a nonce url (for a link):
<a href="<?php print Pebo_wp_nonce_helper::create_nonce_url(admin_url('options.php?page=my_plugin_settings'), 'doing_something', 'my_nonce');?>" class="button button-primary"><?php esc_html_e('Do Something!', 'my-plugin-textdomain');?></a>
Nonce validation:

  if(Pebo_wp_nonce_helper::nonce_verify('nonce_name', 'action_name') != false){
  	//Do Something..
  {
  
Create nonce hidden field inside a form :
<form method="post">
   <!-- some inputs here ... -->
   <?php Pebo_wp_nonce_helper::get_hidden_field( 'name_of_my_action', 'name_of_nonce_field' ); 
?>
</form>
Validate a nonce hidden field.

  if(Pebo_wp_nonce_helper::check_nonce_field('name_of_my_action', 'name_of_nonce_field') != false){
  	//Do Something..
  {