mirror of
https://github.com/claradex/nativegallery.git
synced 2025-02-19 02:11:53 +03:00
23 lines
437 B
PHP
23 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
|
|
)
|
|
);
|
|
}
|
|
}
|