1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-10 16:40:52 +01:00
2020-08-14 09:55:05 +02:00

19 lines
432 B
PHP
Executable File

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