nativegallery-weryskok/app/Models/Comment.php

35 lines
1.5 KiB
PHP
Raw Normal View History

2024-07-05 11:51:14 +03:00
<?php
namespace App\Models;
use \App\Services\{DB, Date};
use \App\Models\User;
class Comment {
public $commentid;
public $c;
function __construct($user_id) {
$this->c = $user_id;
}
public function i() {
$user = new User($this->c['user_id']);
echo '<div class="s11 comment" wid="2681468">
<div style="float:right; text-align:right" class="sm">
<span class="message_date">'.Date::zmdate($this->c['posted_at']).'</span><br>
</div>
<a name="2681468"></a><a name="last"></a>
<div><b><a href="/author/'.$this->c['user_id'].'/" class="message_author">'.$user->i('username').'</a></b> &middot; </div>
<div class="rank">Фото: 1585</div>
<div class="message-text">'.$this->c['body'].'</div>
<div class="comment-votes-block">
<div class="wvote" wid="'.$this->c['id'].'">
<div class="w-rating pro">+1</div>
<div class="w-rating-ext">
<div><span class="pro">+1</span> / <span class="con">0</span></div>
</div>
</div>
</div>
</div>';
}
}