2017-08-04 16:28:16 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
include_once __DIR__.'/../../core.php';
|
|
|
|
|
|
|
|
$id_original = filter('id_original');
|
|
|
|
|
|
|
|
if (isset($id_record)) {
|
|
|
|
include __DIR__.'/init.php';
|
|
|
|
}
|
|
|
|
|
|
|
|
?><form action="editor.php?id_module=$id_module$<?php
|
|
|
|
if (isset($id_record)) {
|
|
|
|
echo '&id_record='.$id_record;
|
|
|
|
}
|
2018-02-23 16:04:50 +01:00
|
|
|
?>" method="post" id="add-form">
|
2017-08-04 16:28:16 +02:00
|
|
|
<input type="hidden" name="backto" value="record-edit">
|
|
|
|
|
|
|
|
<?php
|
|
|
|
if (!isset($id_original)) {
|
|
|
|
?>
|
|
|
|
<input type="hidden" name="op" value="add">
|
|
|
|
<?php
|
|
|
|
} else {
|
2018-02-18 19:53:23 +01:00
|
|
|
?>
|
2017-08-04 16:28:16 +02:00
|
|
|
<input type="hidden" name="op" value="row">
|
|
|
|
<input type="hidden" name="id_original" value="<?php echo $id_original; ?>">
|
2018-07-04 11:01:09 +02:00
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
2017-08-04 16:28:16 +02:00
|
|
|
|
|
|
|
<div class="row">
|
2018-02-20 16:46:23 +01:00
|
|
|
<div class="col-md-8">
|
2018-05-11 15:56:08 +02: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">
|
2018-03-22 17:20:33 +01:00
|
|
|
{[ "type": "text", "label": "<?php echo tr('Colore'); ?>", "name": "colore", "id": "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">
|
2017-09-04 12:02:29 +02:00
|
|
|
{[ "type": "textarea", "label": "<?php echo tr('Nota'); ?>", "name": "nota", "value": "$nota$" ]}
|
2017-08-04 16:28:16 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- PULSANTI -->
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12 text-right">
|
|
|
|
<?php
|
|
|
|
if (isset($id_record)) {
|
|
|
|
?>
|
2017-09-04 12:02:29 +02:00
|
|
|
<button type="submit" class="btn btn-success"><i class="fa fa-save"></i> <?php echo tr('Salva'); ?></button>
|
2017-08-04 16:28:16 +02:00
|
|
|
<?php
|
|
|
|
} else {
|
2018-02-18 19:53:23 +01:00
|
|
|
?>
|
2017-09-04 12:02:29 +02:00
|
|
|
<button type="submit" class="btn btn-primary"><i class="fa fa-plus"></i> <?php echo tr('Aggiungi'); ?></button>
|
2017-08-04 16:28:16 +02:00
|
|
|
<?php
|
2018-02-18 19:53:23 +01:00
|
|
|
}
|
2017-08-04 16:28:16 +02:00
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
2018-07-04 11:01:09 +02:00
|
|
|
|
|
|
|
<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>
|