12 lines
670 B
PHP
12 lines
670 B
PHP
<?php
|
|
/**
|
|
* @var Notification $notification
|
|
*/
|
|
?>
|
|
<a href="<?php echo st_url_for('@stNotificationBackend?action=process&id=' . $notification->getId()) ?>" style="white-space: normal" class="bs-d-flex notification-message bs-align-items-center">
|
|
<span class="position-relative" style="height: 26px"><?php echo st_notification_get_icon($notification, array('size' => 26)) ?></span>
|
|
<span class="bs-ms-2" style="max-width: none">
|
|
<?php echo $notification->getMessage() ?>
|
|
<span style="display: block; color: #848484; font-size: 12px; margin-top: 2px; width: 100%"><?php echo st_format_date($notification->getCreatedAt()) ?></span>
|
|
</span>
|
|
</a>
|