mirror of https://github.com/itflow-org/itflow
Add locations read api endpoint
This commit is contained in:
parent
da54b125c3
commit
54e015b5a5
|
|
@ -0,0 +1,22 @@
|
|||
<?php
|
||||
|
||||
require_once '../validate_api_key.php';
|
||||
|
||||
require_once '../require_get_method.php';
|
||||
|
||||
|
||||
if (isset($_GET['location_id'])) {
|
||||
// Location via ID (single)
|
||||
|
||||
$id = intval($_GET['location_id']);
|
||||
$sql = mysqli_query($mysqli, "SELECT * FROM locations WHERE location_id = '$id' AND location_client_id LIKE '$client_id'");
|
||||
|
||||
} else {
|
||||
// All locations
|
||||
|
||||
$sql = mysqli_query($mysqli, "SELECT * FROM locations WHERE location_client_id LIKE '$client_id' ORDER BY location_id LIMIT $limit OFFSET $offset");
|
||||
}
|
||||
|
||||
// Output
|
||||
require_once "../read_output.php";
|
||||
|
||||
Loading…
Reference in New Issue