openstamanager/modules/anagrafiche/api/retrieve.php

21 lines
308 B
PHP
Raw Normal View History

<?php
switch ($resource) {
case 'an_anagrafiche':
$table = 'an_anagrafiche';
if (empty($order)) {
$order[] = 'idanagrafica';
}
2018-02-18 19:53:23 +01:00
if (empty($where['deleted'])) {
2017-09-04 17:18:54 +02:00
$where['deleted'] = 0;
}
break;
}
return [
'an_anagrafiche',
];