Просмотр файла vkclone-0.0.1/protected/modules/users/views/notifications/_notification.php

Размер файла: 353B
<div class="<?= $data->type ?>_alert">
	<span class="title"><?= Yii::app()->dateFormatter->formatDateTimeReadable($data->created_at) ?></span><br />
		<?= CHtml::encode($data->text) ?>
		<?php if ($data->new): ?>
<?php
// It's bad to do it here, but for now it's appropriate
$data->unmarkNew();
$this->unreadNotifications--;
?>
		<?php endif; ?>
</div>