| 1 |
<?php |
| 2 |
|
| 3 |
// If this file is called directly, abort. |
| 4 |
if ( ! defined( 'WPINC' ) ) { |
| 5 |
die; |
| 6 |
} |
| 7 |
|
| 8 |
|
| 9 |
/** |
| 10 |
* Get AJAX action to exclude from translation |
| 11 |
* |
| 12 |
* @return array |
| 13 |
*/ |
| 14 |
function wplng_data_excluded_ajax_action() { |
| 15 |
return apply_filters( |
| 16 |
'wplng_excluded_ajax_action', |
| 17 |
array( |
| 18 |
// WordPress |
| 19 |
'heartbeat', |
| 20 |
|
| 21 |
// Plugin: wpLingua |
| 22 |
'wplng_ajax_heartbeat', |
| 23 |
'wplng_ajax_translation', |
| 24 |
'wplng_ajax_edit_modal', |
| 25 |
'wplng_ajax_save_modal', |
| 26 |
'wplng_ajax_slug', |
| 27 |
'wplng_load_in_progress', |
| 28 |
) |
| 29 |
); |
| 30 |
} |
| 31 |
|