LiteSpeed Linux server2.poyrazhosting.com 3.10.0-962.3.2.lve1.5.77.el7.x86_64 #1 SMP Mon Dec 12 07:06:14 EST 2022 x86_64 safemode : OFF MySQL: OFF | Perl: OFF | cURL: ON | WGet: OFF > / home / cuneytsener53 / istakip.snrsoft.com.tr / | Server Ip : 172.67.216.244 |
Filename | /home/cuneytsener53/istakip.snrsoft.com.tr/pasif-kayitlar.php |
Size | 8.35 kb |
Permission | rw-r--r-- |
Owner | |
Create time | 07-Mar-2025 13:13 |
Last modified | 07-Mar-2025 13:13 |
Last accessed | 29-Mar-2025 23:21 |
Actions | edit | rename | delete | download (gzip) |
View | text | code | image |
<?php
// Yetki kontrolü
if ($yetki->host_domain != 1) {
header('Location: ' . $site . 'yetkisiz-erisim');
exit();
}
$_title = 'Pasif Domain Kayıtları';
?>
<div class="col-md-12">
<div class="card">
<div class="card-header d-flex justify-content-between align-items-center">
<h3 class="card-title">Pasif Domain Kayıtları</h3>
<div class="btn-group">
<a href="host-kayitlari" class="btn btn-primary"><i class="fa fa-list"></i> Aktif Kayıtlar</a>
</div>
</div>
<div class="card-body">
<div class="table-responsive">
<!-- Arama Formu -->
<div class="form-group">
<input type="text" id="searchInput" class="form-control" placeholder="Domain adı ile arama yapabilirsiniz...">
</div>
<!-- Export Butonları -->
<div class="btn-group mb-3">
<button class="btn btn-danger" onclick="exportToPDF()">PDF</button>
<button class="btn btn-primary" onclick="copyToClipboard()">Kopyala</button>
<button class="btn btn-success" onclick="exportToExcel()">Excel</button>
</div>
<table id="domainTable" class="table table-bordered text-nowrap">
<thead>
<tr>
<th>İşlemler</th>
<th>Fiş Numarası</th>
<th>Domain Adı</th>
<th>Domain Alındığı Yer</th>
<th>Durum</th>
<th>Müşteri</th>
<th>Alış Tarihi</th>
<th>Sonraki Y.Tarihi</th>
<th>Kayıt Tarihi</th>
<th>Kaç Gün Kaldı?</th>
</tr>
</thead>
<tbody>
<?php
$query = $db->query("SELECT h.*, m.musteri_adi,
DATEDIFF(FROM_UNIXTIME(h.sonraki_yenileme_tarihi), CURDATE()) as kalan_gun
FROM host h
LEFT JOIN musteriler m ON h.musteri = m.id
WHERE h.durum = 2
ORDER BY h.sonraki_yenileme_tarihi ASC", PDO::FETCH_ASSOC);
if ($query->rowCount()) {
foreach ($query as $row) {
$kalan_gun = $row['kalan_gun'];
$durum_text = $row['durum'] == 1 ? 'Aktif' : 'Pasif';
$durum_class = $row['durum'] == 1 ? 'text-success' : 'text-danger';
?>
<tr>
<td>
<div class="btn-group">
<a href="host-ekle/duzenle/<?php echo $row['id']; ?>" class="btn btn-sm btn-info">
<i class="fa fa-edit"></i>
</a>
<button onclick="durumDegistir(<?php echo $row['id']; ?>, 1)" class="btn btn-sm btn-success">
<i class="fa fa-check"></i> Aktife Al
</button>
</div>
</td>
<td><?php echo $row['fis_no']; ?></td>
<td>
<a href="http://<?php echo $row['domain_adi']; ?>" target="_blank">
<?php echo $row['domain_adi']; ?>
</a>
</td>
<td><?php echo $row['domain_alindigi_yer']; ?></td>
<td class="<?php echo $durum_class; ?>"><?php echo $durum_text; ?></td>
<td><?php echo $row['musteri_adi']; ?></td>
<td><?php echo date('Y-m-d', $row['alis_tarihi']); ?></td>
<td><?php echo date('Y-m-d', $row['sonraki_yenileme_tarihi']); ?></td>
<td><?php echo date('Y-m-d H:i:s', $row['kayit_tarihi']); ?></td>
<td>
<?php
if ($kalan_gun < 0) {
echo '<span class="text-danger">' . abs($kalan_gun) . ' gün geçti</span>';
} else {
echo '<span class="text-' . ($kalan_gun <= 30 ? 'danger' : 'success') . '">' . $kalan_gun . ' gün kaldı</span>';
}
?>
</td>
</tr>
<?php
}
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
<script>
// Arama fonksiyonu
$(document).ready(function(){
$("#searchInput").on("keyup", function() {
var value = $(this).val().toLowerCase();
$("#domainTable tbody tr").filter(function() {
$(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
});
});
});
// Durum değiştirme fonksiyonu
function durumDegistir(id, yeniDurum) {
Swal.fire({
title: 'Emin misiniz?',
text: "Domain durumunu değiştirmek istediğinize emin misiniz?",
icon: 'warning',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Evet, değiştir!',
cancelButtonText: 'İptal'
}).then((result) => {
if (result.isConfirmed) {
$.ajax({
url: 'inc/islemler.php',
type: 'POST',
data: {
islem: 'durum_degistir',
id: id,
durum: yeniDurum
},
success: function(response) {
if(response.success) {
Swal.fire({
icon: 'success',
title: 'Başarılı!',
text: 'Domain durumu başarıyla değiştirildi.',
showConfirmButton: false,
timer: 1500
}).then(() => {
window.location.reload();
});
} else {
Swal.fire({
icon: 'error',
title: 'Hata!',
text: 'Bir hata oluştu: ' + response.message
});
}
},
error: function() {
Swal.fire({
icon: 'error',
title: 'Hata!',
text: 'İşlem sırasında bir hata oluştu'
});
}
});
}
});
}
// PDF export fonksiyonu
function exportToPDF() {
window.print();
}
// Excel export fonksiyonu
function exportToExcel() {
var table2excel = new Table2Excel();
table2excel.export(document.querySelector("#domainTable"), "Pasif_Domainler");
}
// Kopyalama fonksiyonu
function copyToClipboard() {
var table = document.getElementById('domainTable');
var range = document.createRange();
range.selectNode(table);
window.getSelection().removeAllRanges();
window.getSelection().addRange(range);
document.execCommand('copy');
window.getSelection().removeAllRanges();
Swal.fire({
icon: 'success',
title: 'Başarılı!',
text: 'Tablo panoya kopyalandı.',
showConfirmButton: false,
timer: 1500
});
}
</script>
// Yetki kontrolü
if ($yetki->host_domain != 1) {
header('Location: ' . $site . 'yetkisiz-erisim');
exit();
}
$_title = 'Pasif Domain Kayıtları';
?>
<div class="col-md-12">
<div class="card">
<div class="card-header d-flex justify-content-between align-items-center">
<h3 class="card-title">Pasif Domain Kayıtları</h3>
<div class="btn-group">
<a href="host-kayitlari" class="btn btn-primary"><i class="fa fa-list"></i> Aktif Kayıtlar</a>
</div>
</div>
<div class="card-body">
<div class="table-responsive">
<!-- Arama Formu -->
<div class="form-group">
<input type="text" id="searchInput" class="form-control" placeholder="Domain adı ile arama yapabilirsiniz...">
</div>
<!-- Export Butonları -->
<div class="btn-group mb-3">
<button class="btn btn-danger" onclick="exportToPDF()">PDF</button>
<button class="btn btn-primary" onclick="copyToClipboard()">Kopyala</button>
<button class="btn btn-success" onclick="exportToExcel()">Excel</button>
</div>
<table id="domainTable" class="table table-bordered text-nowrap">
<thead>
<tr>
<th>İşlemler</th>
<th>Fiş Numarası</th>
<th>Domain Adı</th>
<th>Domain Alındığı Yer</th>
<th>Durum</th>
<th>Müşteri</th>
<th>Alış Tarihi</th>
<th>Sonraki Y.Tarihi</th>
<th>Kayıt Tarihi</th>
<th>Kaç Gün Kaldı?</th>
</tr>
</thead>
<tbody>
<?php
$query = $db->query("SELECT h.*, m.musteri_adi,
DATEDIFF(FROM_UNIXTIME(h.sonraki_yenileme_tarihi), CURDATE()) as kalan_gun
FROM host h
LEFT JOIN musteriler m ON h.musteri = m.id
WHERE h.durum = 2
ORDER BY h.sonraki_yenileme_tarihi ASC", PDO::FETCH_ASSOC);
if ($query->rowCount()) {
foreach ($query as $row) {
$kalan_gun = $row['kalan_gun'];
$durum_text = $row['durum'] == 1 ? 'Aktif' : 'Pasif';
$durum_class = $row['durum'] == 1 ? 'text-success' : 'text-danger';
?>
<tr>
<td>
<div class="btn-group">
<a href="host-ekle/duzenle/<?php echo $row['id']; ?>" class="btn btn-sm btn-info">
<i class="fa fa-edit"></i>
</a>
<button onclick="durumDegistir(<?php echo $row['id']; ?>, 1)" class="btn btn-sm btn-success">
<i class="fa fa-check"></i> Aktife Al
</button>
</div>
</td>
<td><?php echo $row['fis_no']; ?></td>
<td>
<a href="http://<?php echo $row['domain_adi']; ?>" target="_blank">
<?php echo $row['domain_adi']; ?>
</a>
</td>
<td><?php echo $row['domain_alindigi_yer']; ?></td>
<td class="<?php echo $durum_class; ?>"><?php echo $durum_text; ?></td>
<td><?php echo $row['musteri_adi']; ?></td>
<td><?php echo date('Y-m-d', $row['alis_tarihi']); ?></td>
<td><?php echo date('Y-m-d', $row['sonraki_yenileme_tarihi']); ?></td>
<td><?php echo date('Y-m-d H:i:s', $row['kayit_tarihi']); ?></td>
<td>
<?php
if ($kalan_gun < 0) {
echo '<span class="text-danger">' . abs($kalan_gun) . ' gün geçti</span>';
} else {
echo '<span class="text-' . ($kalan_gun <= 30 ? 'danger' : 'success') . '">' . $kalan_gun . ' gün kaldı</span>';
}
?>
</td>
</tr>
<?php
}
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
<script>
// Arama fonksiyonu
$(document).ready(function(){
$("#searchInput").on("keyup", function() {
var value = $(this).val().toLowerCase();
$("#domainTable tbody tr").filter(function() {
$(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
});
});
});
// Durum değiştirme fonksiyonu
function durumDegistir(id, yeniDurum) {
Swal.fire({
title: 'Emin misiniz?',
text: "Domain durumunu değiştirmek istediğinize emin misiniz?",
icon: 'warning',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Evet, değiştir!',
cancelButtonText: 'İptal'
}).then((result) => {
if (result.isConfirmed) {
$.ajax({
url: 'inc/islemler.php',
type: 'POST',
data: {
islem: 'durum_degistir',
id: id,
durum: yeniDurum
},
success: function(response) {
if(response.success) {
Swal.fire({
icon: 'success',
title: 'Başarılı!',
text: 'Domain durumu başarıyla değiştirildi.',
showConfirmButton: false,
timer: 1500
}).then(() => {
window.location.reload();
});
} else {
Swal.fire({
icon: 'error',
title: 'Hata!',
text: 'Bir hata oluştu: ' + response.message
});
}
},
error: function() {
Swal.fire({
icon: 'error',
title: 'Hata!',
text: 'İşlem sırasında bir hata oluştu'
});
}
});
}
});
}
// PDF export fonksiyonu
function exportToPDF() {
window.print();
}
// Excel export fonksiyonu
function exportToExcel() {
var table2excel = new Table2Excel();
table2excel.export(document.querySelector("#domainTable"), "Pasif_Domainler");
}
// Kopyalama fonksiyonu
function copyToClipboard() {
var table = document.getElementById('domainTable');
var range = document.createRange();
range.selectNode(table);
window.getSelection().removeAllRanges();
window.getSelection().addRange(range);
document.execCommand('copy');
window.getSelection().removeAllRanges();
Swal.fire({
icon: 'success',
title: 'Başarılı!',
text: 'Tablo panoya kopyalandı.',
showConfirmButton: false,
timer: 1500
});
}
</script>