View file xmyx.ru/notifi/inc/friend_ok.php

File size: 1.67Kb
<?
/**
* Принятые заявки в друзья
*/

if ($avtor['id']) {
?>
<div class="notification Row Row_style_withBorder notification_reverse">        
<a class="notification__fillLink" href="/id<?= $avtor['id']?>" aria-label="Перейти к уведомлению"></a>
<div class="notification__left">
<a class="notification__avatar" href="/id<?= $avtor['id']?>"><?= avka50($avtor['id'], 'notification__avatarPhoto')?>    
<div class="notification__avatarIcon Icon Icon_notify_mini_friend_accepted">     </div>
</a>
</div>
<div class="notification__center">
<div class="notification__row notification__row_name_header">
<b><a href="/id<?= $avtor['id']?>" class="mem_link" mention=""><?= $avtor['nick']?></a></b> принял<?= ($avtor['pol'] == 1 ? '' : 'а')?> Вашу заявку в друзья 
</div>
      
      
<div class="notification__row notification__row_name_buttons">
<div class="BtnStack">
<a class="Btn Btn_theme_secondary BtnStack__btn" href="/mail/?act=show&peer=<?= $avtor['id']?>" role="button">Отправить сообщение</a>
</div>
</div>

<div class="notification__row notification__row_name_footer"><?= vremja($post['time'])?></div>
</div> 
<div class="notification__body">

<div id="show_menu<?= $post['id']?>" class="notification__actionsBubble">
<a class="notification__action" href="/notifi?high=<?= $post['id']?>"> Скрыть уведомление</a>
</div>

<div class="notification__actions">
      <div class="notification__actionsTrigger" onclick="show_menu(<?= $post['id']?>)" aria-hidden="true"></div>
</div>

</div> 
</div>
<?  
} 
else{
	query("DELETE FROM `notifi` WHERE `id_user` = '$user[id]' AND `id` = '$post[id]' LIMIT 1");
}
?>