mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-26 15:54:17 +01:00
21 lines
308 B
PHP
21 lines
308 B
PHP
<?php
|
|
|
|
switch ($resource) {
|
|
case 'an_anagrafiche':
|
|
$table = 'an_anagrafiche';
|
|
|
|
if (empty($order)) {
|
|
$order[] = 'idanagrafica';
|
|
}
|
|
|
|
if (empty($where['deleted'])) {
|
|
$where['deleted'] = 0;
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
return [
|
|
'an_anagrafiche',
|
|
];
|