forked from niecoola/Perusnia-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddBook.php
More file actions
156 lines (152 loc) · 6.4 KB
/
Copy pathaddBook.php
File metadata and controls
156 lines (152 loc) · 6.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<?php
$active = "bookCatalog.php";
require './layout/headerBookCenter.php';
if (isset($_POST['submit'])) {
$bookCatalog = new bookController();
if ($bookCatalog->saveBook() > 0) {
$_SESSION['success'] = "Data berhasil di tambahakan!";
header("Location: bookCatalog.php");
}
}
if (isset($_SESSION['failed'])) {
echo '<div class="alert alert-danger alert-dismissible fade show" role="alert">
Data gagal di tambahkan!!
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>';
$failed = $_SESSION['failed'];
}
?>
<form method="post" action="" enctype="multipart/form-data" id="identifier">
<input type="hidden" name="id_users" value="2">
<div class="d-flex justify-content-between align-items-center">
<h4 class="my-4"><a href="bookCatalog.php" class=" pe-3 btn-back"><i class="fa-solid fa-arrow-left text-dark"></i></a> Add a book</h4>
<div class="save">
<button type="submit" name="submit" class="btn btn-success me-2"><i class="fa-solid fa-floppy-disk"></i> Save new Book</button>
</div>
</div>
<div class="row justify-content-center">
<figure class="text-center">
<blockquote class="blockquote">
<p>About the book</p>
</blockquote>
<figcaption class="blockquote-footer">
Lengkapi data tentang buku anda
</figcaption>
<hr>
</figure>
<div class="col-md-10">
<div class="mb-3">
<label for="judul" class="form-label">Judul</label>
<input type="text" name="judul" class="form-control <?= isset($failed['judul']) ? 'is-invalid' : '' ?>" id="judul" placeholder="">
<div id="judul" class="invalid-feedback">
<?= $failed['judul'] ?>
</div>
</div>
<div class="mb-3">
<label for="deskripsi" class="form-label">Deskripsi</label>
<div name="desc-editor" class="form-control <?= isset($failed['deskripsi']) ? 'is-invalid border-danger' : '' ?>" style="height: 200px;" id="text-editor" placeholder="">
</div>
<input type="hidden" name="deskripsi" class="form-control" id="deskripsi-hidden">
<div id="desc-editor" class="invalid-feedback">
<?= $failed['deskripsi'] ?>
</div>
</div>
</div>
<div class="col-md-5">
<div class="mb-3">
<label for="kode_buku" class="form-label">Kode buku</label>
<input type="text" name="kode_buku" id="" class="form-control text-muted" value="<?= strtoupper('pkey:' . hash('crc32b', date("Y-m-d H:i:s") . 'fasihullisan091966@gmail.com')) ?>" readonly>
</div>
</div>
<div class="col-md-5">
<div class="mb-3">
<label for="publication_date" class="form-label">Publication date</label>
<input type="date" name="publication_date" class="form-control " id="publication_date" value="<?= date("Y-m-d") ?>" placeholder="">
</div>
</div>
<div class="col-md-5">
<div class="mb-3">
<label for="publisher_name" class="form-label">Publisher name</label>
<input type="text" name="publisher_name" class="form-control text-muted" id="publisher_name" value="<?= $user->getUserById($_SESSION['userdata']['id_users'])['nama_depan'] . " " . $user->getUserById($_SESSION['userdata']['id_users'])['nama_belakang'] ?>" placeholder="" readonly>
</div>
</div>
<div class="col-md-5">
<div class="mb-3">
<label for="author" class="form-label">Author</label>
<input type="text" name="author" class="form-control <?= isset($failed['author']) ? 'is-invalid' : '' ?>" id="author" value="" placeholder="">
<div id="author" class="invalid-feedback">
<?= $failed['author'] ?>
</div>
</div>
</div>
</div>
<div class="row justify-content-center my-5">
<figure class="text-center">
<blockquote class="blockquote">
<p>Book File</p>
</blockquote>
<figcaption class="blockquote-footer">
Upload file cover dan buku digital anda
</figcaption>
<hr>
</figure>
<div class="col-md-10">
<div class="row">
<div class="col-md-12">
<div class="mb-3">
<label for="book_cover" class="form-label">Book Cover</label>
<input type="file" name="book_cover" id="book_cover" class="form-control <?= isset($failed['book_cover']['required']) || isset($failed['book_cover']['extension']) || isset($failed['book_cover']['size']) ? 'is-invalid' : '' ?>">
<div id="book_cover" class="invalid-feedback">
<?php foreach ($failed['book_cover'] as $c) {
echo $c . "<br>";
} ?>
</div>
</div>
</div>
<div class="col-md-4">
<div class="mb-3">
<label for="book_file" class="form-label">Book file</label>
<input type="file" name="book_file" id="book_file" class="form-control <?= isset($failed['book_file']['required']) || isset($failed['book_file']['extension']) ? 'is-invalid' : '' ?>">
<div id="book_file" class="invalid-feedback">
<?php foreach ($failed['book_file'] as $f) {
echo $f;
} ?>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row justify-content-center my-5">
<figure class="text-center">
<blockquote class="blockquote">
<p>Payment option</p>
</blockquote>
<figcaption class="blockquote-footer">
isikan data pembayaran buku ini
</figcaption>
<hr>
</figure>
<div class="col-md-3">
<div class="mb-3">
<label for="harga" class="form-label">Price</label>
<input type='currency' name="harga" id="price-book" value="" placeholder='' class="form-control" />
<span class="text-muted">no need to enter symbols (. , $ Rp /)</span>
</div>
</div>
<div class="col-md-7">
<div class="mb-3">
<label for="pembayaran" class="form-label">Metode Pembayran</label>
<select name="pembayaran" name="pembayaran" id="" class="form-control">
<option selected value="" class="text-muted">-</option>
<option value="">You not have payment method</option>
</select>
</div>
</div>
<div class="col-md-10 py-5 text-center">
<button type="submit" name="submit" class="btn btn-success px-5"><i class="fa-solid fa-floppy-disk"></i> Save new Book</button>
</div>
</div>
</form>
<?php unset($_SESSION['failed']) ?>
<?php require './layout/footerBookCenter.php' ?>