fix comments pallete

This commit is contained in:
themohooks 2024-07-21 16:58:26 +03:00
parent e6d1abedb8
commit c04dab7da0
2 changed files with 17 additions and 2 deletions

View file

@ -7,14 +7,21 @@ class Comment {
public $commentid;
public $c;
public $class;
function __construct($user_id) {
$this->c = $user_id;
}
public function class($class) {
$this->class = $class;
}
public function i() {
$user = new User($this->c['user_id']);
echo '<div class="s11 comment" wid="2681468">
echo '<div class="'.$this->class.' comment" wid="'.$this->c['id'].'">
<div style="float:right; text-align:right" class="sm">
<span class="message_date">'.Date::zmdate($this->c['posted_at']).'</span><br>
<a href="#" class="quoteLink dot">Цитировать</a>
·
<a href="#'.$this->c['id'].'" class="cmLink dot">Ссылка</a>
</div>
<a name="2681468"></a><a name="last"></a>
<div><img src="'.$user->i('photourl').'" width="32" style="border-radius: 3px; margin-right: 5px;"><b><a href="/author/'.$this->c['user_id'].'/" class="message_author">'.htmlspecialchars($user->i('username')).'</a></b> &middot;

View file

@ -348,9 +348,17 @@ if ($photo->i('id') !== null) {
<h4 class="pp-item-header">Комментарии<span style="font-weight:normal"> <span style="color:#aaa">&middot;</span> <?=count($comments)?></span></h4>
<div id="posts">
<?php
$number = 1;
foreach ($comments as $c) {
$comm = new Comment($c);
if ($number % 2 == 0) {
$class = 's11';
} else {
$class = 's1';
}
$comm->class($class);
$number++;
$comm->i();
}
?>