-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadminProfile.php
238 lines (219 loc) · 12 KB
/
adminProfile.php
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
<?php
require_once 'public/header.php';
// $page = 'dashboard';
if (!isset($_SESSION['admin_id'])) {
header('location: adminLogin.php');
}
if (isset($_SESSION['admin_id'])) {
$admin_id = $_SESSION['admin_id'];
$adminDetails = $obj_adminAuth->getAdminDetails($admin_id);
//getting states and local Government
$statesAndLga = $objAdminFetch->getUsersStatesAndLga($admin_id);
}
$states = $obj_Auth->getStates();
$success = $err = '';
if (isset($_POST['update'])) {
$firstName = sanitizeInputs($_POST['fname']);
$otherName = sanitizeInputs($_POST['oname']);
$email = sanitizeInputs($_POST['email']);
$phone_no = sanitizeInputs($_POST['phoneNumber']);
$state = sanitizeInputs($_POST['state']);
$lga = sanitizeInputs($_POST['lga']);
if (empty($firstName) || empty($otherName) || empty($email) || empty($phone_no) || empty($state) || empty($lga)) {
$err = 'field can\'t be empty';
} else {
$update = $objAdminFetch->update($admin_id, $firstName, $otherName, $email, $phone_no, $state, $lga);
if ($update) {
$success = 'Profile Sucessfully Updated';
} else {
$err = 'Profle Update Failed';
}
}
}
?>
<script>
document.title = "Admin's Profile";
</script>
<div id="page-top">
<div id="wrapper">
<!-- Sidebar -->
<?php require_once 'public/include/sidebar.php'; ?>
<!-- End of Sidebar -->
<!-- Content Wrapper -->
<div id="content-wrapper" class="d-flex flex-column">
<!-- Main Content -->
<div id="content">
<!-- Topbar -->
<?php require_once 'public/include/navbar.php'; ?>
<!-- End of Topbar -->
<div class="container">
<div class="row">
<div class=" offset-xl-1 offset-md-1 col-xl-10 col-md-10 col-sm-12 mt-5">
<div class="card shadow ">
<div class="card-header ">
<h2 class="text-center"><?= $adminDetails['firstname']; ?>'s Profile (Admin)</h2>
</div>
<div class="card-body offset-1">
<?php if ($success) { ?>
<div class="row">
<div class=" offset-3 col-6">
<div class="alert alert-success alert-dismissible fade show" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
<span class="sr-only">Close</span>
</button>
<strong><?= $success; ?> !!!</strong>
</div>
</div>
</div>
<?php } elseif ($err) { ?>
<div class="row">
<div class=" offset-3 col-6">
<div class="alert alert-danger alert-dismissible fade show" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
<span class="sr-only">Close</span>
</button>
<strong><?= $err; ?> !!!</strong>
</div>
</div>
</div>
<?php } ?>
<div class="row">
<div class="col">
<h4 class="card-title">
<strong>Name:
</strong><?= $adminDetails['firstname'] . ' ' . $adminDetails['othername']; ?>
</h4>
<h4 class="card-title"><strong>Phone Number:
</strong><?= $adminDetails['phone_no']; ?>
</h4>
<h4 class="card-title"><strong>E-mail:
</strong><?= $adminDetails['email']; ?>
</h4>
</h4>
<h4 class="card-title"><strong>State:
</strong><?= $statesAndLga['state']; ?>
</h4>
<h4 class="card-title"><strong>Local Government:
</strong><?= $statesAndLga['lga']; ?> </h4>
</div>
</div>
<!-- <div class="col-6">
<img src="" alt="">
</div> -->
</div>
<div class="card-footer ">
<div class="row justify-content-center">
<div class="col-3">
<!-- Button trigger modal edit profile -->
<button type="button" class="btn btn-primary btn-lg " data-toggle="modal" data-target="#modelId">
Edit Profile
</button>
<!-- Button trigger modal edit profile -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal edit profile -->
<div class="modal fade" id="modelId" tabindex="-1" role="dialog" aria-labelledby="modelTitleId" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title"><?= $adminDetails['firstname']; ?>'s profile update (Admin)</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<form action="<?= $_SERVER['PHP_SELF']; ?>" method="POST">
<div class="form-group">
<label for="fname">First Name: </label>
<input type="text" class="form-control" name="fname" id="fname" aria-describedby="helpId" placeholder="" value="<?= $adminDetails['firstname']; ?>">
</div>
<div class="form-group">
<label for="oname">Other Name: </label>
<input type="text" class="form-control" name="oname" id="oname" aria-describedby="helpId" placeholder="" value="<?= $adminDetails['othername']; ?> ">
</div>
<div class="form-group">
<label for="phoneNumber">Phone Number: </label>
<input type="text" class="form-control" name="phoneNumber" id="phoneNumber" aria-describedby="helpId" placeholder="" value="<?= $adminDetails['phone_no']; ?> ">
</div>
<div class="form-group">
<label for="email">Email: </label>
<input type="email" class="form-control" name="email" id="email" aria-describedby="helpId" placeholder="" value="<?= $adminDetails['email']; ?>">
</div>
<div class="form-group row">
<div class="col-sm-6 mb-3 mb-sm-0">
<select class="form-control " name="state" id="state">
<option value="" selected="">-- Select Your State --</option>
<?php foreach ($states as $state) { ?>
<option value="<?= $state['id']; ?>"><?= $state['name']; ?></option>
<?php } ?>
</select>
</div>
<div class="col-sm-6 mb-3 mb-sm-0">
<select class="form-control " name="lga" id="lga">
<option value="" selected="">-- Select local Government --</option>
</select>
</div>
</div>
<div class="row">
<div class="col-2 offset-9 ml-auto">
<button type="submit" name="update" class="btn btn-primary">Update</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<!-- <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button> -->
</div>
</div>
</div>
</div>
<!-- Modal edit profile -->
</div>
<?php
require_once 'public/footer.php';
?>
<script>
$(document).ready(function() {
$('#exampleModal').on('show.bs.modal', event => {
var button = $(event.relatedTarget);
var modal = $(this);
// Use above variables to manipulate the DOM
});
$('#state').change(function() {
var stateId = $(this).val()
// console.log(stateId);
$.ajax({
method: "GET",
contentType: false,
data: {
"stateId": stateId
},
url: 'check_lga.php',
dataType: "Json",
success: function(response) {
var options = '';
$.each(response, function(i, value) {
options += "<option value = " + value.id + " > " + value
.name + "</option>";
$('#lga').html(options);
})
}
})
})
});
</script>