File: /var/www/selfanalyse/tinymce_new/jscripts/tiny_mce/plugins/tiny_mce_wiris/integration/cas.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<?php
// ${license.statement}
require_once ('pluginbuilder.php');
$provider = $pluginBuilder->getCustomParamsProvider();
$lang = $provider->getParameter('lang', 'en');
$mode = $provider->getParameter('mode', null);
// Adding - if necessary - CORS headers
$origin = isset($_SERVER['HTTP_ORIGIN']) ? $_SERVER['HTTP_ORIGIN'] : "";
$res = new com_wiris_system_service_HttpResponse();
$pluginBuilder->addCorsHeaders($res, $origin);
$cas = $pluginBuilder->newCas();
echo $cas->cas($mode, $lang);