mirror of
https://github.com/claradex/nativegallery.git
synced 2024-11-15 19:49:08 +03:00
23 lines
476 B
PHP
23 lines
476 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Controllers\Api\Images;
|
||
|
|
||
|
|
||
|
|
||
|
use App\Services\{Auth, Router, GenerateRandomStr, DB, Json, EXIF};
|
||
|
use App\Models\{User, Vote, Comment};
|
||
|
|
||
|
|
||
|
class CommentsLoad
|
||
|
{
|
||
|
public function __construct()
|
||
|
{
|
||
|
|
||
|
$comments = DB::query('SELECT * FROM photos_comments WHERE photo_id=:pid', array(':pid'=>explode('/', $_SERVER['REQUEST_URI'])[4]));
|
||
|
foreach ($comments as $c) {
|
||
|
$comm = new Comment($c);
|
||
|
$comm->i();
|
||
|
}
|
||
|
}
|
||
|
}
|