| Server IP : 103.48.194.25 / Your IP : 216.73.216.74 Web Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.33 System : Linux VMHostDefault 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64 User : sieuthimay ( 1016) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/zomuaban.com/public_html/site/views/backend/pages/city/ |
Upload File : |
<style>
.city-row input{
display:inline;
height:25px;
}
</style>
<div class="col-xs-12 panel">
<!-- Table -->
<table class="table table-bordered table-hover ">
<thead id="filter">
<tr>
<th>Thứ tự</th>
<th>Giá trị</th>
<th>Tên thành phố</th>
<th class="text-right">Thao tác</th>
</tr>
</thead>
<tbody id="listing">
<tr id="create-row">
<td><input class="id form-control" value="0" type="number" /></td>
<td><input class="pId form-control" placeholder="Nhập giá trị (tối đa 3 kí tự)" type="text" maxlength="3"/></td>
<td><input class="name form-control" placeholder="Nhập tên tỉnh/thành phố" /></td>
<td class="text-right">
<div class="btn-group btn-group-xs">
<a class="add-city-btn btn btn-primary">Thêm mới</a>
</div>
</td>
</tr>
<?php
$cities = get_all_city(false);
# Danh sách thành phố chưa được duyệt
if (count($cities['pending']) > 0) {
foreach($cities['pending'] as $c) {
echo getPageIncBkend('city-row', $c );
}
}
# Danh sách thành phố Lớn
foreach($cities['popular'] as $c) {
echo getPageIncBkend('city-row', $c );
}
# Các thành phố khác
foreach($cities['normal'] as $c) {
echo getPageIncBkend('city-row', $c );
}
?>
</tbody>
</table>
<div class="alert alert-warning col-xs-12">
<p class="col-xs-10 help-block">Insert toàn bộ tỉnh/thành vào bảng từ khóa (* chỉ insert 1 lần, tránh trùng lặp)</p>
<a id="insert-keyword-btn" class="col-xs-2 btn btn-danger">INSERT</a>
</div>
</div>