2024-07-05 11:51:14 +03:00
|
|
|
<?php
|
|
|
|
|
2024-07-06 09:57:51 +03:00
|
|
|
namespace App\Controllers\Api\Images\Comments;
|
2024-07-05 11:51:14 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
use App\Services\{Auth, Router, GenerateRandomStr, DB, Json, EXIF};
|
|
|
|
use App\Models\{User, Vote, Comment};
|
|
|
|
|
|
|
|
|
2024-07-06 09:57:51 +03:00
|
|
|
class Load
|
2024-07-05 11:51:14 +03:00
|
|
|
{
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
|
|
|
|
$comments = DB::query('SELECT * FROM photos_comments WHERE photo_id=:pid', array(':pid'=>explode('/', $_SERVER['REQUEST_URI'])[4]));
|
2024-09-12 17:28:20 +03:00
|
|
|
$number = 1;
|
2024-07-05 11:51:14 +03:00
|
|
|
foreach ($comments as $c) {
|
2024-09-12 17:28:20 +03:00
|
|
|
$comm = new Comment($c);
|
|
|
|
|
|
|
|
if ($number % 2 == 0) {
|
|
|
|
$class = 's11';
|
|
|
|
} else {
|
|
|
|
$class = 's1';
|
|
|
|
}
|
|
|
|
$comm->class($class);
|
|
|
|
$number++;
|
|
|
|
$comm->i();
|
2024-07-05 11:51:14 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|