2017-09-22 12:31:06 +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 12:31:06 +02:00
include_once __DIR__ . '/../../core.php' ;
2020-06-22 17:29:35 +02:00
if ( ! $record [ 'predefined' ]) {
$attr = '' ;
} else {
$attr = 'readonly' ;
2020-06-22 17:45:10 +02:00
echo '<div class="alert alert-warning">' . tr ( 'Alcune impostazioni non possono essere modificate per questo template.' ) . '</div>' ;
2020-06-22 17:29:35 +02:00
}
2017-09-22 12:31:06 +02:00
?>
2018-02-23 16:04:50 +01:00
< form action = " " method = " post " id = " edit-form " >
2017-09-22 12:31:06 +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 12:31:06 +02:00
</ div >
< div class = " panel-body " >
< div class = " row " >
2018-02-20 16:46:23 +01:00
< div class = " col-md-8 " >
2020-06-22 17:29:35 +02:00
{[ " type " : " text " , " label " : " <?php echo tr('Nome'); ?> " , " name " : " name " , " value " : " $name $ " , " required " : 1 , " extra " : " <?php echo $attr ; ?> " ]}
2017-09-22 12:31:06 +02:00
</ div >
2018-02-20 16:46:23 +01:00
< div class = " col-md-4 " >
2018-07-18 15:20:10 +02:00
{[ " type " : " span " , " label " : " <?php echo tr('Modulo del template'); ?> " , " name " : " module " , " values " : " query=SELECT id, title AS descrizione FROM zz_modules WHERE enabled = 1 " , " value " : " <?php echo Modules::get( $record['id_module'] )['title']; ?> " ]}
2017-09-22 12:31:06 +02:00
</ div >
2018-02-20 16:46:23 +01:00
</ div >
< div class = " row " >
< div class = " col-md-8 " >
2019-08-29 10:25:14 +02:00
{[ " type " : " select " , " label " : " <?php echo tr('Indirizzo email'); ?> " , " name " : " smtp " , " value " : " $id_account $ " , " ajax-source " : " smtp " ]}
2018-02-20 16:46:23 +01:00
</ div >
2017-09-22 12:31:06 +02:00
< div class = " col-md-4 " >
2018-12-28 00:04:41 +01:00
{[ " type " : " checkbox " , " label " : " <?php echo tr('Richiedi notifica di lettura'); ?> " , " name " : " read_notify " , " value " : " $read_notify $ " , " placeholder " : " <?php echo tr('Richiedi la notifica di lettura al destinatario.'); ?> " ]}
2017-09-22 12:31:06 +02:00
</ div >
</ div >
< div class = " row " >
< div class = " col-md-8 " >
2018-02-18 19:53:23 +01:00
{[ " type " : " text " , " label " : " <?php echo tr('Oggetto'); ?> " , " name " : " subject " , " value " : " $subject $ " ]}
2017-09-22 12:31:06 +02:00
</ div >
< div class = " col-md-4 " >
2021-02-18 18:48:44 +01:00
< ? php $records [ 0 ][ 'icon' ] = ( empty ( $records [ 0 ][ 'icon' ])) ? 'fa fa-envelope' : $records [ 0 ][ 'icon' ]; ?>
2018-12-23 14:01:59 +01:00
{[ " type " : " text " , " label " : " <?php echo tr('Icona'); ?> " , " name " : " icon " , " value " : " <?php echo $records[0] ['icon']; ?> " , " help " : " <?php echo tr('Es. \ 'fa fa-envelope \ ''); ?> " ]}
2017-09-22 12:31:06 +02:00
</ div >
</ div >
< div class = " row " >
< div class = " col-md-4 " >
2018-12-28 08:07:56 +01:00
{[ " type " : " text " , " label " : " <?php echo tr('CC'); ?> " , " name " : " cc " , " value " : " $cc $ " , " help " : " <?php echo 'Copia carbone.'; ?> " ]}
2017-09-22 12:31:06 +02:00
</ div >
< div class = " col-md-4 " >
2018-12-28 08:07:56 +01:00
{[ " type " : " text " , " label " : " <?php echo tr('CCN'); ?> " , " name " : " bcc " , " value " : " $bcc $ " , " help " : " <?php echo 'Copia carbone nascosta.'; ?> " ]}
2017-09-22 12:31:06 +02:00
</ div >
< div class = " col-md-4 " >
2018-12-28 08:07:56 +01:00
{[ " type " : " email " , " label " : " <?php echo tr('Rispondi a'); ?> " , " name " : " reply_to " , " value " : " $reply_to $ " , " help " : " <?php echo 'Rispondi a questo indirizzo e-mail.'; ?> " ]}
2017-09-22 12:31:06 +02:00
</ div >
</ div >
2018-02-22 09:44:26 +01:00
< ? php
// Stampe
2019-08-29 10:25:14 +02:00
$selected_prints = $dbo -> fetchArray ( 'SELECT id_print FROM em_print_template WHERE id_template = ' . prepare ( $id_record ));
2021-11-22 11:35:20 +01:00
$selected_prints = array_column ( $selected_prints , 'id_print' );
$selected_mansioni = $dbo -> fetchArray ( 'SELECT idmansione FROM em_mansioni_template WHERE id_template = ' . prepare ( $id_record ));
$selected_mansioni = array_column ( $selected_mansioni , 'idmansione' );
2018-02-22 09:44:26 +01:00
echo '
< div class = " row " >
< div class = " col-md-12 " >
2021-11-22 11:35:20 +01:00
{[ " type " : " select " , " multiple " : " 1 " , " label " : " '.tr('Stampe').' " , " name " : " prints[] " , " value " : " '.implode(',', $selected_prints ).' " , " values " : " query=SELECT id, title AS text FROM zz_prints WHERE id_module = '.prepare( $record['id_module'] ).' AND enabled=1 " ]}
</ div >
</ div >
< div class = " row " >
< div class = " col-md-12 " >
{[ " type " : " select " , " multiple " : " 1 " , " label " : " '.tr('Mansioni').' " , " name " : " idmansioni[] " , " value " : " '.implode(',', $selected_mansioni ).' " , " ajax-source " : " mansioni " ]}
2018-02-22 09:44:26 +01:00
</ div >
</ div > ' ;
?>
2017-09-22 12:31:06 +02:00
< div class = " row " >
< div class = " col-md-12 " >
2018-09-07 17:43:52 +02:00
{[ " type " : " ckeditor " , " label " : " <?php echo tr('Contenuto'); ?> " , " name " : " body " , " value " : " $body $ " ]}
2017-09-22 12:31:06 +02:00
</ div >
</ div >
2021-12-03 10:39:57 +01:00
< div class = " row " >
< div class = " col-md-12 " >
{[ " type " : " textarea " , " label " : " <?php echo tr('Note interne'); ?> " , " name " : " note_aggiuntive " , " value " : " $note_aggiuntive $ " , " class " : " unblockable " ]}
</ div >
</ div >
2018-02-23 09:51:42 +01:00
< ? php
// Variabili utilizzabili
2021-05-25 09:40:35 +02:00
$module = Modules :: get ( $record [ 'id_module' ]);
2021-03-29 09:11:17 +02:00
$variables = $module -> getPlaceholders ( $id_record );
2018-02-23 09:51:42 +01:00
2018-09-04 10:14:42 +02:00
echo '
<!-- Istruzioni per il contenuto -->
< div class = " box box-info " >
< div class = " box-header " >
2020-03-19 13:35:56 +01:00
< h3 class = " box-title " > '.tr(' Variabili ').' </ h3 >
2018-09-04 10:14:42 +02:00
</ div >
< div class = " box-body " > ' ;
if ( ! empty ( $variables )) {
2018-02-23 09:51:42 +01:00
echo '
2020-03-19 13:35:56 +01:00
< p > '.tr("Puoi utilizzare le seguenti variabili nell' oggetto e nel corpo della mail " ).':</p>
2018-09-04 10:14:42 +02:00
< ul > ' ;
2018-02-23 09:51:42 +01:00
foreach ( $variables as $variable => $value ) {
echo '
2021-09-17 14:34:10 +02:00
< li >< code > '.$variable.' </ code ></ li > ' ;
2018-02-23 09:51:42 +01:00
}
echo '
2018-09-04 10:14:42 +02:00
</ ul > ' ;
2018-02-23 09:51:42 +01:00
} else {
echo '
2018-09-04 10:14:42 +02:00
< p >< i class = " fa fa-warning " ></ i > '.tr(' Non sono state definite variabili da utilizzare nel template ').' .</ p > ' ;
2018-02-23 09:51:42 +01:00
}
2018-09-04 10:14:42 +02:00
echo '
</ div >
</ div >
< hr > ' ;
2018-02-23 09:51:42 +01:00
?>
2018-02-22 23:19:04 +01:00
2017-09-22 12:31:06 +02:00
</ div >
</ div >
</ form >
2020-06-22 17:29:35 +02:00
< ? php
2021-11-15 11:19:54 +01:00
if ( ! empty ( $newsletters [ 0 ])) {
2021-07-16 10:44:20 +02:00
echo '
< div class = " alert alert-danger " >
'.tr(' Questo template non può essere rimosso dal sistema perchè collegato alle seguenti newsletter : ').'
< ul > ' ;
2017-09-22 12:31:06 +02:00
2021-07-20 10:01:59 +02:00
foreach ( $newsletters as $newsletter ) {
echo '
2021-07-16 10:44:20 +02:00
< li > '.Modules::link(' Newsletter ', $newsletter->id, $newsletter->name, null, ' ').' </ li > ' ;
2021-07-20 10:01:59 +02:00
}
2021-07-16 10:44:20 +02:00
echo '
</ ul >
</ div > ' ;
2021-07-20 10:01:59 +02:00
} elseif ( ! $record [ 'predefined' ]) {
?>
2017-09-22 12:31:06 +02:00
< a class = " btn btn-danger ask " data - backto = " record-list " >
< i class = " fa fa-trash " ></ i > < ? php echo tr ( 'Elimina' ); ?>
2019-08-26 18:02:05 +02:00
</ a >
2020-06-22 17:29:35 +02:00
< ? php
}
2020-09-07 15:04:06 +02:00
?>