mirror of
https://github.com/claradex/nativegallery.git
synced 2025-02-19 10:22:22 +03:00
24 lines
437 B
PHP
24 lines
437 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Controllers\Api\Admin\GeoDB;
|
||
|
|
||
|
|
||
|
|
||
|
use App\Services\{Auth, Router, GenerateRandomStr, DB, Json, EXIF};
|
||
|
use App\Models\{User, Vote, Photo};
|
||
|
|
||
|
|
||
|
class Delete
|
||
|
{
|
||
|
public function __construct()
|
||
|
{
|
||
|
DB::query('DELETE FROM geodb WHERE id=:id', array(':id' => $_GET['id']));
|
||
|
echo json_encode(
|
||
|
array(
|
||
|
'errorcode' => 0,
|
||
|
'error' => 0
|
||
|
)
|
||
|
);
|
||
|
}
|
||
|
}
|