mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-14 00:24:28 +01:00
18 lines
471 B
PHP
18 lines
471 B
PHP
|
<?php
|
||
|
|
||
|
include_once __DIR__.'/../../../core.php';
|
||
|
|
||
|
switch ($resource) {
|
||
|
case 'tipiintervento':
|
||
|
$query = 'SELECT idtipointervento AS id, descrizione FROM in_tipiintervento |where| ORDER BY idtipointervento';
|
||
|
|
||
|
foreach ($elements as $element) {
|
||
|
$filter[] = 'idtipointervento='.prepare($element);
|
||
|
}
|
||
|
if (!empty($search)) {
|
||
|
$search_fields[] = 'descrizione LIKE '.prepare('%'.$search.'%');
|
||
|
}
|
||
|
|
||
|
break;
|
||
|
}
|