Initial commit with updated Auth and media ignored

This commit is contained in:
Hamza-Ayed
2026-04-28 13:04:27 +03:00
commit 67af97474c
477 changed files with 66444 additions and 0 deletions

19
ride/helpCenter/add.php Normal file
View File

@@ -0,0 +1,19 @@
<?php
require_once __DIR__ . '/../../connect.php';
$driverID = filterRequest("driverID");
$helpQuestion = filterRequest("helpQuestion");
$sql = "INSERT INTO `helpCenter` (`driverID`, `helpQuestion`) VALUES (:driverID, :helpQuestion)";
$stmt = $con->prepare($sql);
$stmt->bindParam(':driverID', $driverID);
$stmt->bindParam(':helpQuestion', $helpQuestion);
$stmt->execute();
if ($stmt->rowCount() > 0) {
jsonSuccess(null, "Help question saved successfully");
} else {
jsonError("Failed to save help question");
}
?>

View File

@@ -0,0 +1,17 @@
<?php
require_once __DIR__ . '/../../connect.php';
$helpID = filterRequest("id");
$sql = "DELETE FROM `helpCenter` WHERE `id` = :id";
$stmt = $con->prepare($sql);
$stmt->bindParam(':id', $helpID, PDO::PARAM_INT);
$stmt->execute();
if ($stmt->rowCount() > 0) {
jsonSuccess(null, "Help question deleted successfully");
} else {
jsonError("Failed to delete help question");
}
?>

View File

28
ride/helpCenter/get.php Normal file
View File

@@ -0,0 +1,28 @@
<?php
require_once __DIR__ . '/../../connect.php';
$driverID = filterRequest("driverID");
$sql = "SELECT
`id`,
`driverID`,
`helpQuestion`,
`datecreated`
FROM
`helpCenter`
WHERE
`driverID` = :driverID
ORDER BY
`datecreated` DESC";
$stmt = $con->prepare($sql);
$stmt->bindParam(':driverID', $driverID, PDO::PARAM_STR);
$stmt->execute();
if ($stmt->rowCount() > 0) {
$record = $stmt->fetchAll(PDO::FETCH_ASSOC);
jsonSuccess($record);
} else {
jsonError("Help question not found");
}
?>

View File

@@ -0,0 +1,18 @@
<?php
require_once __DIR__ . '/../../connect.php';
$helpID = filterRequest("id");
$sql = "SELECT * FROM `helpCenter` WHERE `id` = :id";
$stmt = $con->prepare($sql);
$stmt->bindParam(':id', $helpID, PDO::PARAM_INT);
$stmt->execute();
if ($stmt->rowCount() > 0) {
$record = $stmt->fetch(PDO::FETCH_ASSOC);
jsonSuccess($record);
} else {
jsonError("Help question not found");
}
?>

View File

@@ -0,0 +1,19 @@
<?php
require_once __DIR__ . '/../../connect.php';
$helpID = filterRequest("id");
$newHelpQuestion = filterRequest("newHelpQuestion");
$sql = "UPDATE `helpCenter` SET `helpQuestion` = :helpQuestion WHERE `id` = :id";
$stmt = $con->prepare($sql);
$stmt->bindParam(':helpQuestion', $newHelpQuestion);
$stmt->bindParam(':id', $helpID, PDO::PARAM_INT);
$stmt->execute();
if ($stmt->rowCount() > 0) {
jsonSuccess(null, "Help question updated successfully");
} else {
jsonError("Failed to update help question");
}
?>