321 lines
12 KiB
PHP
321 lines
12 KiB
PHP
|
|
<?php
|
|
include('include/headscript.php'); ?>
|
|
|
|
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>TRF CIMAC </title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta content="CIMAC TRF Portal" name="description" />
|
|
<meta content="" name="author" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
|
|
<!-- App favicon -->
|
|
<link rel="shortcut icon" href="../images/favicon.ico">
|
|
|
|
<!--Form Wizard-->
|
|
<link href="../plugins/jquery-steps/jquery.steps.css" rel="stylesheet" type="text/css">
|
|
|
|
<!-- App css -->
|
|
<link href="assets/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
|
|
<link href="assets/css/jquery-ui.min.css" rel="stylesheet">
|
|
<link href="assets/css/icons.min.css" rel="stylesheet" type="text/css" />
|
|
<link href="assets/css/metisMenu.min.css" rel="stylesheet" type="text/css" />
|
|
<link href="assets/css/app.min.css" rel="stylesheet" type="text/css" />
|
|
|
|
|
|
<!-- submit form with button -->
|
|
<script>
|
|
function formSubmit() {
|
|
document.forms["myForm"].submit();
|
|
}
|
|
</script>
|
|
<!-- upload image script -->
|
|
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
|
|
<script>
|
|
$(document).ready(function() {
|
|
$(".upload-doc").click(function(){
|
|
$(".form-horizontal").ajaxForm({target: '.preview'}).submit();
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<!-- Top Bar Start -->
|
|
<?php include('include/topbar.php'); ?>
|
|
<!-- Top Bar End -->
|
|
|
|
|
|
<!-- Left Sidenav -->
|
|
<?php include('include/leftsidenav.php'); ?>
|
|
<!-- end left-sidenav-->
|
|
|
|
<div class="page-wrapper">
|
|
<!-- Page Content-->
|
|
<div class="page-content">
|
|
|
|
<div class="container-fluid">
|
|
<!-- Page-Title -->
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<div class="page-title-box">
|
|
<div class="float-right">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item"><a href="javascript:void(0);">TRF</a></li>
|
|
<li class="breadcrumb-item active">Starter</li>
|
|
</ol>
|
|
</div>
|
|
<h4 class="page-title"><?php echo $titlewb; ?></h4>
|
|
</div><!--end page-title-box-->
|
|
</div><!--end col-->
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
|
|
|
|
|
|
|
|
<?php // photos ?>
|
|
|
|
|
|
|
|
|
|
|
|
<?php // documents?>
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<h4 class="mt-0">Aggiungi i files che saranno visibili nell'area Download
|
|
<div class="modal fade bs-example-modal-center5" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
|
|
<div class="modal-dialog modal-dialog-centered">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
|
|
</div>
|
|
</div><!-- /.modal-content -->
|
|
</div><!-- /.modal-dialog -->
|
|
</div><!-- /.modal --></h4>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="upload-div">
|
|
<!-- File upload form -->
|
|
<form id="uploadForm" enctype="multipart/form-data">
|
|
|
|
<div class="form-group row">
|
|
<label for="validationTooltip01" class="col-sm-2 col-form-label">Descrizione</label>
|
|
<div class="col-sm-8">
|
|
<input type="text" class="form-control" id="filedescription" name="filedescription" placeholder="Descrizione" required="">
|
|
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label for="validationTooltip01" class="col-sm-2 col-form-label">REV</label>
|
|
<div class="col-sm-8">
|
|
<input type="text" class="form-control" id="rev" name="rev" placeholder="Revisione" required="">
|
|
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label for="validationTooltip01" class="col-sm-2 col-form-label">Data</label>
|
|
<div class="col-sm-8">
|
|
<input type="text" class="form-control" id="daterev" name="daterev" placeholder="Data Revisione" required="">
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<label><?php echo $selectfileonyourpc; ?></label>
|
|
<input type="file" name="doc[]" id="fileInput" >
|
|
<input type="hidden" name="usernamead" id="usernamead" value="<?php echo $loginusername; ?>">
|
|
<input type="submit" name="submit" value="UPLOAD"/>
|
|
</form>
|
|
|
|
<!-- Display upload status -->
|
|
<div id="uploadStatus"></div>
|
|
|
|
</div>
|
|
|
|
|
|
<br>
|
|
|
|
|
|
</div><!--end card-body-->
|
|
</div><!--end card-->
|
|
|
|
|
|
<div class="card" id="provacla">
|
|
|
|
<?php
|
|
$filenamelist = new WA_MySQLi_RS("filenamelist",$cmctrfdb,0);
|
|
$filenamelist->setQuery("SELECT * FROM filerepository");
|
|
$filenamelist->execute();
|
|
?>
|
|
<div class="card-body">
|
|
<h4 class="mt-0 header-title"><?php echo $addeddoctitle; ?></h4>
|
|
<p class="text-muted mb-3"><?php echo $addeddoctitle_help; ?></p>
|
|
|
|
|
|
<div class="upload-div">
|
|
<!-- File upload form -->
|
|
<div class="card-body">
|
|
|
|
|
|
|
|
<div class="table-responsive" id="docadded">
|
|
|
|
<table class="table table-striped mb-0">
|
|
<thead>
|
|
<tr>
|
|
<th>Filename</th>
|
|
<th>Descrizione</th>
|
|
|
|
<th><?php echo $actiondel; ?></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
<?php
|
|
$wa_startindex = 0;
|
|
while(!$filenamelist->atEnd()) {
|
|
$wa_startindex = $filenamelist->Index;
|
|
?>
|
|
<tr>
|
|
<td><a href="filerepository/<?php echo($filenamelist->getColumnVal("filenamerep")); ?>" target="_blank"><?php echo $filesent; ?></a></td>
|
|
<td><?php echo($filenamelist->getColumnVal("description")); ?></td>
|
|
|
|
<td>
|
|
|
|
<a href="deletefilerep.php?idrepositoryfile=<?php echo($filenamelist->getColumnVal("idfilerepository")); ?>"><i class="fas fa-trash-alt text-danger font-16"></i></a>
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
$filenamelist->moveNext();
|
|
}
|
|
$filenamelist->moveFirst(); //return RS to first record
|
|
unset($wa_startindex);
|
|
unset($wa_repeatcount);
|
|
?>
|
|
|
|
|
|
</tbody>
|
|
</table><br>
|
|
<a href="trfoption.php?idtrf=&codestep=8"><button type="button" class="btn btn-success waves-effect waves-light"><?php echo $nextsteptitle; ?></button> </a>
|
|
<button type="button" class="btn btn-dark waves-effect waves-light" onclick="history.back()"><?php echo $backstep; ?></button>
|
|
|
|
<!--end /table-->
|
|
</div><!--end /tableresponsive-->
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<br>
|
|
|
|
|
|
</div><!--end card-body-->
|
|
</div><!--end card-->
|
|
|
|
|
|
|
|
|
|
</div><!--end col-->
|
|
</div>
|
|
<!-- end page title end breadcrumb -->
|
|
|
|
|
|
</div><!-- container -->
|
|
<!-- footer start -->
|
|
<?php include('include/footer.php'); ?>
|
|
</footer><!--end footer-->
|
|
</div>
|
|
<!-- end page content -->
|
|
</div>
|
|
<!-- end page-wrapper -->
|
|
<script>
|
|
$(document).ready(function(){
|
|
// File upload via Ajax
|
|
$("#uploadForm").on('submit', function(e){
|
|
e.preventDefault();
|
|
$.ajax({
|
|
type: 'POST',
|
|
url: 'uploadfilerepository.php',
|
|
data: new FormData(this),
|
|
contentType: false,
|
|
cache: false,
|
|
processData:false,
|
|
beforeSend: function(){
|
|
$('#uploadStatus').html('<img src="../images/uploading.gif"/>');
|
|
},
|
|
error:function(){
|
|
$('#uploadStatus').html('<span style="color:#EA4335;">File upload failed, please try again.<span>');
|
|
},
|
|
success: function(data){
|
|
$('#uploadForm')[0].reset();
|
|
$('#uploadStatus').html('<span style="color:#28A74B;">File uploaded successfully.<span>');
|
|
$('.gallery').html(data);
|
|
$("#docadded").load(location.href + " #docadded");
|
|
}
|
|
});
|
|
});
|
|
|
|
// File type validation
|
|
$("#fileInput").change(function(){
|
|
var fileLength = this.files.length;
|
|
// var match= ["application/pdf","application/msword","image/jpg","image/gif","application/xls","application/xlsx", "application/vnd.ms-excel", "application/vnd.openxmlformats-officedocument.wordprocessingml.document"];
|
|
var i;
|
|
for(i = 0; i < fileLength; i++){
|
|
var file = this.files[i];
|
|
var imagefile = file.type;
|
|
if(!((imagefile==match[0]) || (imagefile==match[1]) || (imagefile==match[2]) || (imagefile==match[3]))){
|
|
alert('Please select a valid file (PDF, word, excel).');
|
|
$("#fileInput").val('');
|
|
return false;
|
|
}
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- jQuery -->
|
|
<script src="assets/js/jquery.min.js"></script>
|
|
<script src="assets/js/bootstrap.bundle.min.js"></script>
|
|
<script src="assets/js/metismenu.min.js"></script>
|
|
<script src="assets/js/waves.js"></script>
|
|
<script src="assets/js/feather.min.js"></script>
|
|
<script src="assets/js/jquery.slimscroll.min.js"></script>
|
|
<script src="assets/js/jquery-ui.min.js"></script>
|
|
|
|
<script src="../plugins/jquery-steps/jquery.steps.min.js"></script>
|
|
<script src="assets/pages/jquery.form-wizard.init.js"></script>
|
|
|
|
<!-- App js -->
|
|
<script src="assets/js/app.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|