1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-25 23:33:02 +01:00
openstamanager/modules/smtp/actions.php
2017-09-22 15:16:56 +02:00

49 lines
1.3 KiB
PHP

<?php
include_once __DIR__.'/../../core.php';
switch (post('op')) {
case 'add':
$dbo->insert('zz_smtp', [
'name' => $post['name'],
'from_name' => $post['from_name'],
'from_address' => $post['from_address'],
]);
$id_record = $dbo->last_inserted_id();
$_SESSION['infos'][] = tr('Nuovo account email aggiunto!');
break;
case 'update':
$dbo->update('zz_smtp', [
'name' => $post['name'],
'note' => $post['note'],
'server' => $post['server'],
'port' => $post['port'],
'username' => $post['username'],
'password' => $post['password'],
'from_name' => $post['from_name'],
'from_address' => $post['from_address'],
'encryption' => $post['encryption'],
'pec' => $post['pec'],
'main' => $post['main'],
], ['id' => $id_record]);
if (!empty($post['main'])) {
$dbo->query('UPDATE zz_smtp SET main = 0 WHERE id != '.prepare($id_record));
}
$_SESSION['infos'][] = tr('Informazioni salvate correttamente!');
break;
case 'delete':
$dbo->query('UPDATE zz_smtp SET deleted = 1 WHERE id='.prepare($id_record));
$_SESSION['infos'][] = tr('Account email eliminato!');
break;
}