mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-06-05 22:09:38 +02:00
Implementazione distribuita della ricerca
This commit is contained in:
47
modules/automezzi/ajax/search.php
Normal file
47
modules/automezzi/ajax/search.php
Normal file
@@ -0,0 +1,47 @@
|
||||
<?php
|
||||
|
||||
include_once __DIR__.'/../../../core.php';
|
||||
|
||||
$id_module = Modules::get('Automezzi')['id'];
|
||||
|
||||
$fields = [
|
||||
'Nome' => 'nome',
|
||||
'Descrizione' => 'descrizione',
|
||||
'Targa' => 'targa',
|
||||
];
|
||||
|
||||
$query = 'SELECT *';
|
||||
|
||||
foreach ($fields as $name => $value) {
|
||||
$query .= ', '.$value." AS '".str_replace("'", "\'", $name)."'";
|
||||
}
|
||||
|
||||
$query .= ' FROM dt_automezzi WHERE 1=0 ';
|
||||
|
||||
foreach ($fields as $name => $value) {
|
||||
$query .= ' OR '.$value.' LIKE "%'.$term.'%"';
|
||||
}
|
||||
|
||||
$query .= Modules::getAdditionalsQuery('Automezzi');
|
||||
|
||||
$rs = $dbo->fetchArray($query);
|
||||
|
||||
foreach ($rs as $r) {
|
||||
$result = [];
|
||||
|
||||
$result['link'] = ROOTDIR.'/editor.php?id_module='.$id_module.'&id_record='.$r['id'];
|
||||
$result['title'] = $r['nome'];
|
||||
$result['category'] = 'Automezzi';
|
||||
|
||||
// Campi da evidenziare
|
||||
$result['labels'] = [];
|
||||
foreach ($fields as $name => $value) {
|
||||
if (str_contains($r[$name], $term)) {
|
||||
$text = str_replace($term, "<span class='highlight'>".$term.'</span>', $r[$name]);
|
||||
|
||||
$result['labels'][] = $name.': '.$text.'<br/>';
|
||||
}
|
||||
}
|
||||
|
||||
$results[] = $result;
|
||||
}
|
||||
Reference in New Issue
Block a user