mirror of
https://github.com/claradex/nativegallery.git
synced 2024-11-15 03:31:10 +03:00
fix comments pallete
This commit is contained in:
parent
e6d1abedb8
commit
c04dab7da0
2 changed files with 17 additions and 2 deletions
|
@ -7,14 +7,21 @@ class Comment {
|
||||||
|
|
||||||
public $commentid;
|
public $commentid;
|
||||||
public $c;
|
public $c;
|
||||||
|
public $class;
|
||||||
function __construct($user_id) {
|
function __construct($user_id) {
|
||||||
$this->c = $user_id;
|
$this->c = $user_id;
|
||||||
}
|
}
|
||||||
|
public function class($class) {
|
||||||
|
$this->class = $class;
|
||||||
|
}
|
||||||
public function i() {
|
public function i() {
|
||||||
$user = new User($this->c['user_id']);
|
$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">
|
<div style="float:right; text-align:right" class="sm">
|
||||||
<span class="message_date">'.Date::zmdate($this->c['posted_at']).'</span><br>
|
<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>
|
</div>
|
||||||
<a name="2681468"></a><a name="last"></a>
|
<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> ·
|
<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> ·
|
||||||
|
|
|
@ -348,9 +348,17 @@ if ($photo->i('id') !== null) {
|
||||||
<h4 class="pp-item-header">Комментарии<span style="font-weight:normal"> <span style="color:#aaa">·</span> <?=count($comments)?></span></h4>
|
<h4 class="pp-item-header">Комментарии<span style="font-weight:normal"> <span style="color:#aaa">·</span> <?=count($comments)?></span></h4>
|
||||||
<div id="posts">
|
<div id="posts">
|
||||||
<?php
|
<?php
|
||||||
|
$number = 1;
|
||||||
foreach ($comments as $c) {
|
foreach ($comments as $c) {
|
||||||
$comm = new Comment($c);
|
$comm = new Comment($c);
|
||||||
|
|
||||||
|
if ($number % 2 == 0) {
|
||||||
|
$class = 's11';
|
||||||
|
} else {
|
||||||
|
$class = 's1';
|
||||||
|
}
|
||||||
|
$comm->class($class);
|
||||||
|
$number++;
|
||||||
$comm->i();
|
$comm->i();
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Reference in a new issue