| 1 |
<?php |
| 2 |
|
| 3 |
if ( ! defined( 'ABSPATH' ) ) { |
| 4 |
exit; |
| 5 |
} |
| 6 |
|
| 7 |
class WPDataTablesFeedback{ |
| 8 |
public static $wdt_api_feedback_url = 'https://wpreportbuilder.com/wp-json/wpreportbuilder/v1/form-submissions'; |
| 9 |
public static function wdtSendFeedback($reason, $reason_caption){ |
| 10 |
$response = wp_remote_post(self::$wdt_api_feedback_url, [ |
| 11 |
'body' => [ |
| 12 |
'api_version' => get_option('wdtVersion'), |
| 13 |
'feedback_key' => $reason, |
| 14 |
'feedback' => $reason_caption, |
| 15 |
], |
| 16 |
]); |
| 17 |
|
| 18 |
return $response; |
| 19 |
} |
| 20 |
} |