ajax.php
22 lines
| 1 | <?php |
| 2 | /** |
| 3 | * WordPress AJAX Routes. |
| 4 | * WARNING: Do not use \SureCart::route()->all() here, otherwise you will override |
| 5 | * ALL AJAX requests which you most likely do not want to do. |
| 6 | * |
| 7 | * @link https://docs.wpemerge.com/#/framework/routing/methods |
| 8 | * |
| 9 | * @package SureCart |
| 10 | */ |
| 11 | |
| 12 | if ( ! defined( 'ABSPATH' ) ) { |
| 13 | exit; |
| 14 | } |
| 15 | |
| 16 | /* |
| 17 | |-------------------------------------------------------------------------- |
| 18 | | Nonce Refresh |
| 19 | |-------------------------------------------------------------------------- |
| 20 | */ |
| 21 | \SureCart::route()->get()->where( 'ajax', 'sc-rest-nonce', true, true )->handle( 'NonceController@get' ); |
| 22 |