ajax.php
3 years ago
cleared_cache_ajax.php
3 years ago
create_campaign_ajax.php
3 years ago
delete_data_ajax.php
3 years ago
export_campaigns_ajax.php
3 years ago
export_geo_ajax.php
3 years ago
export_referrers_ajax.php
3 years ago
export_views_ajax.php
3 years ago
filters_ajax.php
3 years ago
migration_status_ajax.php
3 years ago
real_time_ajax.php
3 years ago
test_email_ajax.php
3 years ago
update_capabilities_ajax.php
3 years ago
real_time_ajax.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWP; |
| 4 | |
| 5 | class Real_Time_AJAX extends AJAX |
| 6 | { |
| 7 | protected function action_name(): string |
| 8 | { |
| 9 | return 'iawp_real_time'; |
| 10 | } |
| 11 | |
| 12 | protected function action_callback(): void |
| 13 | { |
| 14 | $real_time = new Real_Time(); |
| 15 | wp_send_json_success($real_time->get_real_time_analytics()); |
| 16 | } |
| 17 | } |
| 18 |