1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-01-15 17:07:00 +01:00
openstamanager/modules/tipi_scadenze/ajax/select.php
2020-08-14 09:55:05 +02:00

20 lines
506 B
PHP
Executable File

<?php
include_once __DIR__.'/../../../core.php';
switch ($resource) {
case 'tipi_scadenze':
$query = 'SELECT nome AS id, descrizione FROM co_tipi_scadenze |where| ORDER BY nome ASC';
foreach ($elements as $element) {
$filter[] = 'id='.prepare($element);
}
if (!empty($search)) {
$search_fields[] = 'nome LIKE '.prepare('%'.$search.'%');
$search_fields[] = 'descrizione LIKE '.prepare('%'.$search.'%');
}
break;
}