20 lines
428 B
PHP
20 lines
428 B
PHP
<?php
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
| ----------------------------------------------------------------
|
|
| Base Definitions
|
|
| ----------------------------------------------------------------
|
|
|
|
|
| This is meant to be a place to put various defined variables
|
|
| that will be used throughout the plugin.
|
|
|
|
|
*/
|
|
|
|
if ( ! defined( 'NMSP_PLUGIN_NONCE' ) ) {
|
|
define( 'NMSP_PLUGIN_NONCE', 'nmsp-plugin-nonce' );
|
|
}
|