In my self written php framework i have a method to display a simple message:
$page->displayMessage('Title','Body','error','layout.php');
This loads a view and layout and displays the message in it. I use it for messages for which i dont want to make a new view for.
Now i'm missing this functionality in Zend and want to implement it again but at first i want to ask you guys if there is already something like this in the Zend Framework and i didn't noticed it?