2017-09-22 11:13:36 +02:00
< ? php
2020-09-07 15:04:06 +02:00
/*
* OpenSTAManager : il software gestionale open source per l ' assistenza tecnica e la fatturazione
2021-01-20 15:08:51 +01:00
* Copyright ( C ) DevCode s . r . l .
2020-09-07 15:04:06 +02:00
*
* 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 />.
*/
2017-09-22 11:13:36 +02:00
include_once __DIR__ . '/../../core.php' ;
?>
2018-02-23 16:04:50 +01:00
< form action = " " method = " post " id = " edit-form " >
2017-09-22 11:13:36 +02:00
< input type = " hidden " name = " op " value = " update " >
< input type = " hidden " name = " backto " value = " record-edit " >
<!-- DATI -->
< div class = " panel panel-primary " >
< div class = " panel-heading " >
2018-02-18 19:53:23 +01:00
< h3 class = " panel-title " >< ? php echo tr ( 'Dati' ); ?> </h3>
2017-09-22 11:13:36 +02:00
</ div >
< div class = " panel-body " >
< div class = " row " >
2017-09-22 15:16:56 +02:00
< div class = " col-md-6 " >
2018-02-18 19:53:23 +01:00
{[ " type " : " text " , " label " : " <?php echo tr('Nome account'); ?> " , " name " : " name " , " value " : " $name $ " , " required " : 1 ]}
2017-09-22 11:13:36 +02:00
</ div >
< div class = " col-md-3 " >
2018-08-11 15:49:46 +02:00
{[ " type " : " checkbox " , " label " : " <?php echo tr('Indirizzo PEC'); ?> " , " name " : " pec " , " value " : " $pec $ " ]}
2017-09-22 15:16:56 +02:00
</ div >
< div class = " col-md-3 " >
2018-09-27 12:54:57 +02:00
{[ " type " : " checkbox " , " label " : " <?php echo tr('Indirizzo predefinito'); ?> " , " name " : " predefined " , " value " : " $predefined $ " , " help " : " <?php echo tr('Account da utilizzare per l \ 'invio di tutte le email dal gestionale.'); ?> " ]}
2017-09-22 11:13:36 +02:00
</ div >
</ div >
< div class = " row " >
< div class = " col-md-6 " >
2018-02-18 19:53:23 +01:00
{[ " type " : " text " , " label " : " <?php echo tr('Nome visualizzato'); ?> " , " name " : " from_name " , " value " : " $from_name $ " ]}
2017-09-22 11:13:36 +02:00
</ div >
2018-12-27 19:08:23 +01:00
< div class = " col-md-3 " >
2018-03-01 20:35:25 +01:00
{[ " type " : " email " , " label " : " <?php echo tr('Email mittente'); ?> " , " name " : " from_address " , " value " : " $from_address $ " , " required " : 1 ]}
2017-09-22 11:13:36 +02:00
</ div >
2019-08-26 18:02:05 +02:00
2018-12-27 19:08:23 +01:00
< div class = " col-md-3 " >
{[ " type " : " checkbox " , " label " : " <?php echo tr('Non verificare il certificato SSL'); ?> " , " name " : " ssl_no_verify " , " value " : " $ssl_no_verify $ " ]}
</ div >
2019-08-26 18:02:05 +02:00
2017-09-22 11:13:36 +02:00
</ div >
< div class = " row " >
< div class = " col-md-6 " >
2018-02-18 19:53:23 +01:00
{[ " type " : " text " , " label " : " <?php echo tr('Server SMTP'); ?> " , " name " : " server " , " required " : 1 , " value " : " $server $ " ]}
2017-09-22 11:13:36 +02:00
</ div >
< div class = " col-md-3 " >
2018-03-02 17:19:15 +01:00
{[ " type " : " number " , " label " : " <?php echo tr('Porta SMTP'); ?> " , " name " : " port " , " required " : 1 , " class " : " text-center " , " decimals " : " 0 " , " max-value " : " 65535 " , " value " : " $port $ " ]}
2017-09-22 11:13:36 +02:00
</ div >
< div class = " col-md-3 " >
2018-02-18 19:53:23 +01:00
{[ " type " : " select " , " label " : " <?php echo tr('Sicurezza SMTP'); ?> " , " name " : " encryption " , " values " : " list= \" \" : \" <?php echo tr('Nessuna'); ?> \" , \" tls \" : \" TLS \" , \" ssl \" : \" SSL \" " , " value " : " $encryption $ " ]}
2017-09-22 11:13:36 +02:00
</ div >
</ div >
< div class = " row " >
< div class = " col-md-6 " >
2018-02-18 19:53:23 +01:00
{[ " type " : " text " , " label " : " <?php echo tr('Username SMTP'); ?> " , " name " : " username " , " value " : " $username $ " ]}
2017-09-22 11:13:36 +02:00
</ div >
2019-08-29 14:48:14 +02:00
< div class = " col-md-3 " >
{[ " type " : " password " , " label " : " <?php echo tr('Password SMTP'); ?> " , " name " : " password " , " value " : " $password $ " ]}
</ div >
< div class = " col-md-3 " >
2020-02-28 00:22:12 +01:00
{[ " type " : " number " , " label " : " <?php echo tr('Timeout coda di invio (millisecondi)'); ?> " , " name " : " timeout " , " value " : " $timeout $ " , " decimals " : 1 , " min-value " : 100 ]}
2017-09-22 11:13:36 +02:00
</ div >
</ div >
< div class = " row " >
< div class = " col-md-12 " >
2018-02-18 19:53:23 +01:00
{[ " type " : " textarea " , " label " : " <?php echo tr('Note'); ?> " , " name " : " note " , " value " : " $note $ " ]}
2017-09-22 11:13:36 +02:00
</ div >
</ div >
</ div >
</ div >
</ form >
2018-09-05 10:43:12 +02:00
< ? php
// Collegamenti diretti
// Template email collegati a questo account
2019-08-29 10:25:14 +02:00
$elementi = $dbo -> fetchArray ( 'SELECT `id`, `name` FROM `em_templates` WHERE `id_account` = ' . prepare ( $id_record ));
2018-09-05 10:43:12 +02:00
if ( ! empty ( $elementi )) {
echo '
< div class = " box box-warning collapsable collapsed-box " >
< div class = " box-header with-border " >
< h3 class = " box-title " >< i class = " fa fa-warning " ></ i > '.tr(' Template email collegati : _NUM_ ' , [
2018-09-19 09:57:30 +02:00
'_NUM_' => count ( $elementi ),
2018-09-05 10:43:12 +02:00
]) . ' </ h3 >
< div class = " box-tools pull-right " >
< button type = " button " class = " btn btn-box-tool " data - widget = " collapse " >< i class = " fa fa-plus " ></ i ></ button >
</ div >
</ div >
< div class = " box-body " >
< ul > ' ;
foreach ( $elementi as $elemento ) {
echo '
< li > '.Modules::link(' Template email ', $elemento[' id '], $elemento[' name ']).' </ li > ' ;
}
echo '
</ ul >
</ div >
</ div > ' ;
} else {
echo '
2017-09-22 11:13:36 +02:00
< a class = " btn btn-danger ask " data - backto = " record-list " >
2018-09-05 10:43:12 +02:00
< i class = " fa fa-trash " ></ i > '.tr(' Elimina ').'
</ a > ' ;
}
2019-07-16 15:43:15 +02:00
?>