Пример #1
0
 */
 case 'providers':
     echo Config::toJSON(Translation::providers());
     break;
     /**
       @param $_GET['TranslationId'] TranslationId to search for
       @param $_GET['SearchText'] Text to search for
       Delivers matches as produced by all providers.
     */
 /**
   @param $_GET['TranslationId'] TranslationId to search for
   @param $_GET['SearchText'] Text to search for
   Delivers matches as produced by all providers.
 */
 case 'search':
     echo Config::toJSON(Translation::search($_GET['TranslationId'], $_GET['SearchText']));
     break;
     /** Returns a JSON array of all Names in the Studies table. */
 /** Returns a JSON array of all Names in the Studies table. */
 case 'studies':
     echo Config::toJSON(Translation::studies());
     break;
     /**
       Fetches the complete Page_Translations table.
       @returns A JSON Array with JSON Objects inside.
         Fields of contained JSON Objects are named as in db.
     */
 /**
   Fetches the complete Page_Translations table.
   @returns A JSON Array with JSON Objects inside.
     Fields of contained JSON Objects are named as in db.
Пример #2
0
<?php

require_once 'categorySelection.php';
$sText = $_GET['SearchText'];
$sAll = array_key_exists('SearchAll', $_GET);
$data = Translation::search($translationId, $sText, $sAll);
//var_dump($data);
if (count($data) > 0) {
    require_once 'showTable.php';
    showTable(array($data));
} else {
    echo '<p class="well">Sorry, nothing was found.</p>';
}
?>
<script type="application/javascript">
<?php 
require_once 'js/translation.js';
?>
</script>