Operations.php
23 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | /** |
| 5 | * Class Tribe__Ajax__Operations |
| 6 | * |
| 7 | * Handles common AJAX operations. |
| 8 | */ |
| 9 | class Tribe__Ajax__Operations { |
| 10 | |
| 11 | public function verify_or_exit( $nonce, $action, $exit_data = [] ) { |
| 12 | if ( ! wp_verify_nonce( $nonce, $action ) ) { |
| 13 | exit( $exit_data ); |
| 14 | } |
| 15 | |
| 16 | return true; |
| 17 | } |
| 18 | |
| 19 | public function exit_data( $data = [] ) { |
| 20 | exit( $data ); |
| 21 | } |
| 22 | } |
| 23 |