mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-12 16:38:19 +01:00
23 lines
345 B
PHP
23 lines
345 B
PHP
<?php
|
|
|
|
include_once __DIR__.'/core.php';
|
|
|
|
if (!isset($term)) {
|
|
/*
|
|
== Super search ==
|
|
Ricerca di un termine su tutti i moduli.
|
|
Il risultato è in json
|
|
*/
|
|
|
|
$term = get('term');
|
|
$term = str_replace('/', '\\/', $term);
|
|
|
|
$results = AJAX::search($term);
|
|
|
|
echo json_encode($results);
|
|
}
|
|
|
|
// Casi particolari
|
|
else {
|
|
}
|