Compare commits

...

3 commits

Author SHA1 Message Date
Slava Petrov
3f4150b64a
Merge a870e60571 into 4541ce1afe 2024-12-14 19:40:21 +07:00
mrilyew
4541ce1afe fix(profiles): fix #1186 2024-12-14 15:19:09 +03:00
Slava Petrov
a870e60571 news left menu 2024-12-13 16:57:19 +03:00
6 changed files with 24 additions and 2 deletions

View file

@ -35,7 +35,7 @@ final class UserPresenter extends OpenVKPresenter
$this->template->_template = "User/deactivated.xml";
$this->template->user = $user;
} else if($this->user->identity->isBlacklistedBy($user)) {
} else if($this->user->identity && $this->user->identity->isBlacklistedBy($user)) {
$this->template->_template = "User/blacklisted.xml";
$this->template->blacklist_status = $user->isBlacklistedBy($this->user->identity);

View file

@ -239,6 +239,14 @@
</object>
</a>
</div>
<div id="news" n:if="OPENVK_ROOT_CONF['openvk']['preferences']['news']['enable']">
<b>{_news} </b>
<hr size="1">
<text>{php echo OPENVK_ROOT_CONF['openvk']['preferences']['news']['title'];}</text>
<br><br>
<a href="{php echo OPENVK_ROOT_CONF['openvk']['preferences']['news']['link'];}">Подробнее »</a>
</div>
<div n:if="OPENVK_ROOT_CONF['openvk']['preferences']['commerce'] && $thisUser->getCoins() != 0" id="votesBalance">
{tr("you_still_have_x_points", $thisUser->getCoins())|noescape}

View file

@ -2314,7 +2314,7 @@ li {
padding-left: 15px;
}
#votesBalance {
#votesBalance, #news {
margin-top: 10px;
padding: 7px;
background-color: #f6f6f6;
@ -2323,6 +2323,12 @@ li {
user-select: none;
}
#news b
{
color: #8A0000;
font-size: 12px;
}
.cookies-popup {
position: fixed;
bottom: 0;

View file

@ -1138,6 +1138,8 @@
"increased_your_rating_by" = "increased your rating by";
"news" = "News";
/* Gifts */
"gift" = "Gift";

View file

@ -1078,6 +1078,8 @@
"negative_rating_value" = "Мы не можем украсть рейтинг у другого человека, извините.";
"increased_your_rating_by" = "повысил ваш рейтинг на";
"news" = "Новость";
/* Gifts */
"gift" = "Подарок";

View file

@ -17,6 +17,10 @@ openvk:
minLength: 3 # won't affect existing short urls or the ones set via admin panel
forbiddenNames:
- "index.php"
news:
enable: false
link: "/link"
title: "я покакал"
photos:
upgradeStructure: false
photoSaving: "quick"