Получить уведомления

Важно!

Метод необходимо использовать только в view. Рекомендуется использовать в header.php

 PrNotify::getMessages(
)

Метод вернет массив уведомлений.

Пример


<?
	$notifications = PrNotify::getMessages();
?>

<? if($notifications) { ?>
	
	<? foreach($notifications as $notify) { ?>
		
		<? if($notify['type'] == 'success') { ?>
			<div class="alert alert-success" role="alert">
			  <?=$notify['text']?>
			</div>
		<? } else if($notify['type'] == 'error') { ?>
			<div class="alert alert-danger" role="alert">
			  <?=$notify['text']?>
			</div>
		<? } ?>
		
	<? } ?>

<? } ?>