2017-08-04 16:28:16 +02:00
< ? php
include_once __DIR__ . '/../../core.php' ;
2018-02-23 16:04:50 +01:00
?> <form action="" method="post" id="edit-form">
2017-08-04 16:28:16 +02:00
< input type = " hidden " name = " backto " value = " record-edit " >
< input type = " hidden " name = " op " value = " update " >
<!-- 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-08-04 16:28:16 +02:00
</ div >
< div class = " panel-body " >
< div class = " row " >
2018-02-20 16:46:23 +01:00
< div class = " col-md-8 " >
2018-02-18 19:53:23 +01:00
{[ " type " : " text " , " label " : " <?php echo tr('Nome'); ?> " , " name " : " nome " , " required " : 1 , " value " : " $nome $ " ]}
2017-08-04 16:28:16 +02:00
</ div >
2018-02-20 16:46:23 +01:00
< div class = " col-md-4 " >
2017-09-04 12:02:29 +02:00
{[ " type " : " text " , " label " : " <?php echo tr('Colore'); ?> " , " name " : " colore " , " class " : " colorpicker text-center " , " value " : " $colore $ " , " extra " : " maxlength='7' " , " icon-after " : " <div class='img-circle square'></div> " ]}
2017-08-04 16:28:16 +02:00
</ div >
</ div >
< div class = " row " >
2018-02-20 16:46:23 +01:00
< div class = " col-md-12 " >
2018-02-18 19:53:23 +01:00
{[ " type " : " textarea " , " label " : " <?php echo tr('Nota'); ?> " , " name " : " nota " , " value " : " $nota $ " ]}
2017-08-04 16:28:16 +02:00
</ div >
</ div >
</ div >
</ div >
</ form >
< div class = " panel panel-primary " >
< div class = " panel-heading " >
2017-09-04 12:02:29 +02:00
< h3 class = " panel-title " >< ? php echo tr ( 'Sottocategorie' ); ?> </h3>
2017-08-04 16:28:16 +02:00
</ div >
< div class = " panel-body " >
< div class = " pull-left " >
2018-10-25 17:11:02 +02:00
< a class = " btn btn-primary " data - href = " <?php echo $rootdir ; ?>/add.php?id_module=<?php echo $id_module ; ?>&id_original=<?php echo $id_record ; ?> " data - toggle = " modal " data - title = " <?php echo tr('Aggiungi riga'); ?> " >< i class = " fa fa-plus " ></ i > < ? php echo tr ( 'Sottocategoria' ); ?> </a><br>
2017-08-04 16:28:16 +02:00
</ div >
< div class = " clearfix " ></ div >
< hr >
< div class = " row " >
< div class = " col-md-12 " >
< table class = " table table-striped table-hover table-condensed " >
< tr >
2017-09-04 12:02:29 +02:00
< th >< ? php echo tr ( 'Nome' ); ?> </th>
< th >< ? php echo tr ( 'Colore' ); ?> </th>
< th >< ? php echo tr ( 'Nota' ); ?> </th>
2018-03-22 17:20:33 +01:00
< th width = " 20% " >< ? php echo tr ( 'Opzioni' ); ?> </th>
2017-08-04 16:28:16 +02:00
</ tr >
2017-09-22 15:19:59 +02:00
< ? php include $docroot . '/modules/' . Modules :: get ( $id_module )[ 'directory' ] . '/row-list.php' ; ?>
2017-08-04 16:28:16 +02:00
</ table >
</ div >
</ div >
</ div >
</ div >
< script >
$ ( document ) . ready ( function (){
$ ( '.colorpicker' ) . colorpicker () . on ( 'changeColor' , function (){
$ ( '#colore' ) . parent () . find ( '.square' ) . css ( 'background' , $ ( '#colore' ) . val () );
});
$ ( '#colore' ) . parent () . find ( '.square' ) . css ( 'background' , $ ( '#colore' ) . val () );
});
</ script >
2017-09-19 16:20:44 +02:00
< ? php
2018-03-22 17:20:33 +01:00
$res = $dbo -> fetchNum ( 'SELECT * FROM `mg_articoli` WHERE `id_categoria`=' . prepare ( $id_record ) . ' OR `id_sottocategoria`=' . prepare ( $id_record ) . ' OR `id_sottocategoria` IN (SELECT id FROM `mg_categorie` WHERE `parent`=' . prepare ( $id_record ) . ')' );
2017-09-20 09:45:12 +02:00
2017-09-19 16:20:44 +02:00
if ( $res ) {
echo '
< div class = " alert alert-danger " >
2018-10-18 19:36:19 +02:00
< p > '.tr(' Ci sono '.count($res).' articoli collegati a questa categoria . Non è possibile eliminarla . ').' </ p >
2017-09-19 16:20:44 +02:00
</ div > ' ;
2017-09-20 09:45:12 +02:00
} else {
echo '
< a class = " btn btn-danger ask " data - backto = " record-list " >
< i class = " fa fa-trash " ></ i > '.tr(' Elimina ').'
</ a > ' ;
2017-09-19 16:20:44 +02:00
}