PluginProbe ʕ •ᴥ•ʔ
Pods – Custom Content Types and Fields / 2.8.23.5
Pods – Custom Content Types and Fields v2.8.23.5
2.7.31.4 2.8.23.5 2.9.19.5 3.0.10.5 3.1.4.3 3.2.8.4 3.3.9.2 2.8.23.4 2.9.19.4 3.0.10.4 3.1.4.2 3.2.8.3 3.3.9.1 trunk 1.14.8 2.7.31.3 2.8.23.3 2.9.19.3 3.0.10.3 3.1.4.1 3.2.0 3.2.1 3.2.1.1 3.2.2 3.2.4 3.2.5 3.2.6 3.2.7 3.2.7.1 3.2.8 3.2.8.1 3.2.8.2 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 3.3.9
pods / tribe-common / src / Tribe / Ajax / Operations.php
pods / tribe-common / src / Tribe / Ajax Last commit date
Dropdown.php 1 week ago Operations.php 1 week ago
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