/var/www/vhosts/m-auto.co/httpdocs/admin
Edit: /var/www/vhosts/m-auto.co/httpdocs/admin/theme_delete.php (1332B)
ليس لديك الصلاحية للقيام بهذه العملية.
";
include 'includes/footer.php';
exit;
}
if (isset($_GET['id'])) {
$id = $_GET['id'];
// Make sure the theme is not active before deleting
$stmt = $conn->prepare("SELECT `is_active` FROM `themes` WHERE `id` = ?");
$stmt->bind_param('i', $id);
$stmt->execute();
$result = $stmt->get_result();
$theme = $result->fetch_assoc();
if ($theme && $theme['is_active']) {
echo "لا يمكن حذف الثيم النشط.
";
} else {
$stmt = $conn->prepare("DELETE FROM `themes` WHERE `id` = ?");
$stmt->bind_param('i', $id);
if ($stmt->execute()) {
echo "تم حذف الثيم بنجاح.
";
} else {
echo "حدث خطأ أثناء حذف الثيم.
";
}
}
echo '