. */ include_once __DIR__.'/../../../core.php'; switch ($resource) { case 'categorie_documenti': $query = 'SELECT `do_categorie`.`id`, `do_categorie_lang`.`title` as descrizione FROM `do_categorie` LEFT JOIN `do_categorie_lang` ON (`do_categorie_lang`.`id_record` = `do_categorie`.`id` AND `do_categorie_lang`.`id_lang` = '.prepare(Models\Locale::getDefault()->id).')|where| ORDER BY `title` ASC'; foreach ($elements as $element) { $filter[] = '`do_categorie`.`id`='.prepare($element); } if (empty($filter)) { $where[] = '`deleted_at` IS NULL'; } if (!empty($search)) { $search_fields[] = '`title` LIKE '.prepare('%'.$search.'%'); } break; }