1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-18 19:23:10 +01:00
openstamanager/modules/categorie_documenti/ajax/select.php
2019-10-04 17:00:53 +02:00

23 lines
536 B
PHP

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