mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-12 08:26:20 +01:00
19 lines
275 B
PHP
19 lines
275 B
PHP
<?php
|
|
|
|
switch ($resource) {
|
|
// Elenco sedi per l'applicazione
|
|
case 'tipi_intervento':
|
|
$table = 'in_tipiintervento';
|
|
|
|
$select = [
|
|
'*',
|
|
'id' => 'idtipointervento',
|
|
];
|
|
|
|
break;
|
|
}
|
|
|
|
return [
|
|
'tipi_intervento',
|
|
];
|