mirror of
https://github.com/itflow-org/itflow
synced 2026-03-03 20:34:51 +00:00
Merge pull request #894 from wrongecho/locations-api
Add locations read api endpoint
This commit is contained in:
22
api/v1/locations/read.php
Normal file
22
api/v1/locations/read.php
Normal file
@@ -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";
|
||||||
|
|
||||||
Reference in New Issue
Block a user