eliminazione file superflui, spostamento file read.php all'interno del progetto, aggiunta astrazione classe Qrcode, miglioramento download bulk, refactoring generale
Signed-off-by: giandonato.inverso@edempg.it <giandonato.inverso@studenti.unimi.it>
This commit is contained in:
committed by
giandonato.inverso@edempg.it
parent
12e358b87c
commit
a2ce4b38b6
@@ -0,0 +1,136 @@
|
||||
<?php
|
||||
session_start();
|
||||
require_once 'config/config.php';
|
||||
require_once BASE_PATH.'/includes/auth_validate.php';
|
||||
require_once BASE_PATH . '/lib/DynamicQrcode/DynamicQrcode.php';
|
||||
|
||||
$dynamic_qrcode_instance = new DynamicQrcode();
|
||||
|
||||
$edit = false;
|
||||
if($_SERVER["REQUEST_METHOD"] === "GET" && isset($_GET["edit"]) && $_GET["edit"] == "true" && isset($_GET["id"])) {
|
||||
$edit = true;
|
||||
$dynamic_qrcode = $dynamic_qrcode_instance->getQrcode($_GET["id"]);
|
||||
}
|
||||
|
||||
if($_SERVER["REQUEST_METHOD"] === "POST" && isset($_POST["del_id"])) {
|
||||
$dynamic_qrcode_instance->deleteQrcode($_POST["del_id"]);
|
||||
}
|
||||
|
||||
if($_SERVER["REQUEST_METHOD"] === "POST" && isset($_POST["edit"])) {
|
||||
if(
|
||||
isset($_POST["identifier"]) &&
|
||||
isset($_POST["filename"]) &&
|
||||
isset($_POST["link"]) &&
|
||||
isset($_POST["state"]) &&
|
||||
isset($_POST["id"])
|
||||
)
|
||||
$dynamic_qrcode_instance->editQrcode($_POST);
|
||||
}
|
||||
|
||||
if($_SERVER["REQUEST_METHOD"] === "POST" && !isset($_POST["edit"])) {
|
||||
if(
|
||||
isset($_POST["foreground"]) &&
|
||||
isset($_POST["background"]) &&
|
||||
isset($_POST["link"]) &&
|
||||
isset($_POST["filename"]) &&
|
||||
isset($_POST["format"])
|
||||
)
|
||||
$dynamic_qrcode_instance->addQrcode($_POST);
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<title>Qrcode Generator</title>
|
||||
<head>
|
||||
<?php include './includes/head.php'; ?>
|
||||
</head>
|
||||
<body class="hold-transition sidebar-mini layout-fixed layout-navbar-fixed layout-footer-fixed">
|
||||
<div class="wrapper">
|
||||
<!-- Navbar -->
|
||||
<?php include './includes/navbar.php'; ?>
|
||||
<!-- /.navbar -->
|
||||
|
||||
<!-- Main Sidebar Container -->
|
||||
<?php include './includes/sidebar.php'; ?>
|
||||
<!-- /.Main Sidebar Container -->
|
||||
|
||||
<!-- Content Wrapper. Contains page content -->
|
||||
<div class="content-wrapper">
|
||||
<!-- Content Header (Page header) -->
|
||||
<div class="content-header">
|
||||
<div class="container-fluid">
|
||||
<div class="row mb-2">
|
||||
|
||||
<div class="col-sm-6">
|
||||
<h1 class="m-0 text-dark"><?php echo ($edit) ? "Edit" : "Add"; ?> Qr code</h1>
|
||||
</div><!-- /.col -->
|
||||
</div><!-- /.row -->
|
||||
</div><!-- /.container-fluid -->
|
||||
</div>
|
||||
<!-- /.content-header -->
|
||||
|
||||
<!-- Flash messages -->
|
||||
<?php include BASE_PATH.'/includes/flash_messages.php'; ?>
|
||||
<!-- /.Flash messages -->
|
||||
|
||||
<!-- Main content -->
|
||||
<section class="content">
|
||||
<div class="container-fluid">
|
||||
<div class="card card-primary">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title">Enter the requested data</h3>
|
||||
</div>
|
||||
<form class="form" action="" method="post" id="dynamic_form" enctype="multipart/form-data">
|
||||
<div class="card-body">
|
||||
<?php
|
||||
if($edit)
|
||||
include BASE_PATH.'/forms/form_dynamic_edit.php';
|
||||
else
|
||||
include BASE_PATH . '/forms/form_dynamic_add.php';
|
||||
?>
|
||||
</div>
|
||||
<div class="card-footer">
|
||||
<button type="submit" class="btn btn-primary">Submit</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div><!--/. container-fluid -->
|
||||
</section><!-- /.content -->
|
||||
</div><!-- /.content-wrapper -->
|
||||
|
||||
<!-- Footer and scripts -->
|
||||
<?php include './includes/footer.php'; ?>
|
||||
|
||||
<!-- Page script -->
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){
|
||||
$('#dynamic_form').validate({
|
||||
rules: {
|
||||
filename: {
|
||||
required: true,
|
||||
},
|
||||
link: {
|
||||
required: true,
|
||||
minlength: 3
|
||||
},
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
<script>
|
||||
$(function () {
|
||||
|
||||
//Colorpicker
|
||||
$('.my-colorpicker1').colorpicker()
|
||||
//color picker with addon
|
||||
$('.my-colorpicker2').colorpicker()
|
||||
|
||||
$('.my-colorpicker2').on('colorpickerChange', function(event) {
|
||||
$('.my-colorpicker2 .fa-square').css('color', event.color.toString());
|
||||
});
|
||||
|
||||
})
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user