You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
398 B
23 lines
398 B
|
7 years ago
|
<?php
|
||
|
|
/* For licensing terms, see /license.txt */
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Responses to AJAX calls.
|
||
|
|
*/
|
||
|
|
require_once __DIR__.'/../global.inc.php';
|
||
|
|
|
||
|
|
api_protect_course_script(true);
|
||
|
|
|
||
|
|
$action = $_REQUEST['a'];
|
||
|
|
|
||
|
|
switch ($action) {
|
||
|
|
case 'translate_html':
|
||
|
7 years ago
|
header('Content-type: application/x-javascript');
|
||
|
|
|
||
|
7 years ago
|
echo api_get_language_translate_html();
|
||
|
7 years ago
|
break;
|
||
|
|
default:
|
||
|
|
echo '';
|
||
|
|
}
|
||
|
|
exit;
|