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';
|
|
|
|
}
|
|
|
|
|
2019-02-26 21:23:50 +01:00
|
|
|
?><form action="" method="post" id="add-form">
|
2017-08-04 16:28:16 +02:00
|
|
|
<input type="hidden" name="backto" value="record-edit">
|
|
|
|
<input type="hidden" name="op" value="add">
|
|
|
|
|
|
|
|
<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">
|
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
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
2018-07-04 11:01:09 +02:00
|
|
|
|
|
|
|
<script>
|
|
|
|
$(document).ready( function(){
|
|
|
|
$('.colorpicker').colorpicker().on('changeColor', function(){
|
2018-11-08 10:58:29 +01:00
|
|
|
$('#bs-popup #colore_').parent().find('.square').css('background', $('#bs-popup #colore_').val());
|
2018-07-04 11:01:09 +02:00
|
|
|
});
|
|
|
|
|
2018-11-08 10:58:29 +01:00
|
|
|
$('#bs-popup #colore_').parent().find('.square').css('background', $('#bs-popup #colore_').val());
|
2018-07-04 11:01:09 +02:00
|
|
|
});
|
|
|
|
</script>
|