loco-ajax.php
9 years ago
loco-data.php
9 years ago
loco-download.php
9 years ago
loco-fail.php
12 years ago
loco-fatal.php
12 years ago
loco-posave.php
9 years ago
loco-posync.php
9 years ago
loco-data.php
22 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Admin ajax include that returns compiled-in data |
| 4 | * Included by loco-ajax.php during Ajax action |
| 5 | */ |
| 6 | |
| 7 | DOING_AJAX or die(); |
| 8 | |
| 9 | // default is single locale response |
| 10 | if( isset($locale) ){ |
| 11 | loco_require('loco-locales'); |
| 12 | $data = loco_locale_resolve($locale); |
| 13 | return array ( |
| 14 | 'locales' => array ( |
| 15 | $locale => $data->export(), |
| 16 | ), |
| 17 | ); |
| 18 | } |
| 19 | |
| 20 | |
| 21 | throw new Exception( __('Invalid data posted to server','loco-translate'), 422 ); |
| 22 |