2022-03-25 19:26:50 +01:00
< ? php
/*
* OpenSTAManager : il software gestionale open source per l ' assistenza tecnica e la fatturazione
* Copyright ( C ) DevCode s . r . l .
*
* This program is free software : you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation , either version 3 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program . If not , see < https :// www . gnu . org / licenses />.
*/
include_once __DIR__ . '/../../core.php' ;
switch ( post ( 'op' )) {
case 'update' :
$nome = post ( 'nome' );
$data = post ( 'data' );
$id_nazione = post ( 'id_nazione' );
$id_regione = post ( 'id_regione' );
$is_recurring = post ( 'is_recurring' );
2022-03-30 16:21:29 +02:00
$is_bank_holiday = post ( 'is_bank_holiday' );
2023-08-04 14:54:28 +02:00
2022-03-25 19:26:50 +01:00
if ( $dbo -> fetchNum ( 'SELECT * FROM `zz_events` WHERE `nome`=' . prepare ( $nome ) . ' AND `id`!=' . prepare ( $id_record )) == 0 ) {
$dbo -> update ( 'zz_events' , [
'nome' => $nome ,
'data' => $data ,
2023-08-04 14:54:28 +02:00
'id_nazione' => $id_nazione ,
2022-03-25 19:26:50 +01:00
'id_regione' => $id_regione ,
'is_recurring' => $is_recurring ,
'is_bank_holiday' => $is_bank_holiday ,
], [
'id' => $id_record ,
]);
flash () -> info ( tr ( 'Salvataggio completato.' ));
} else {
flash () -> error ( tr ( " E' già presente un _TYPE_ con lo stesso nome " , [
'_TYPE_' => 'evento' ,
]));
}
break ;
case 'add' :
$nome = post ( 'nome' );
2022-06-03 16:13:01 +02:00
$data = post ( 'data' );
2022-03-25 19:26:50 +01:00
$id_nazione = post ( 'id_nazione' );
2022-06-03 16:13:01 +02:00
if ( $dbo -> fetchNum ( 'SELECT * FROM `zz_events` WHERE `id_nazione` = ' . prepare ( $id_nazione ) . ' AND `nome`=' . prepare ( $nome ) . ' AND `data`=' . prepare ( $data )) == 0 ) {
2022-03-25 19:26:50 +01:00
$dbo -> insert ( 'zz_events' , [
'nome' => $nome ,
2022-06-03 16:13:01 +02:00
'data' => $data ,
2022-03-25 19:26:50 +01:00
'id_nazione' => $id_nazione ,
]);
$id_record = $dbo -> lastInsertedID ();
if ( isAjaxRequest ()) {
echo json_encode ([ 'id' => $id_record , 'text' => $nome ]);
}
flash () -> info ( tr ( 'Aggiunto nuovo _TYPE_' , [
'_TYPE_' => 'evento' ,
]));
} else {
flash () -> error ( tr ( " E' già presente un _TYPE_ con lo stesso nome e nazione " , [
'_TYPE_' => 'evento' ,
]));
}
break ;
case 'delete' :
$dbo -> delete ( 'zz_events' , [
'id' => $id_record ,
]);
flash () -> info ( tr ( '_TYPE_ eliminato con successo.' , [
'_TYPE_' => 'Evento' ,
]));
break ;
}