1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-01-01 10:37:31 +01:00
openstamanager/modules/categorie_documenti/ajax/select.php
2020-02-14 17:02:16 +01:00

23 lines
536 B
PHP
Executable File

<?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;
}