Following are the 3 different but equal method to set the message
$flashMessenger = $this->_helper->getHelper('FlashMessenger'); $flashMessenger->addMessage('We did something in the last request');
OR
$flashMessenger = $this->_helper->FlashMessenger; $flashMessenger->addMessage('We did something in the last request');
OR
$this->_helper->FlashMessenger('We did something in the last request');
No comments:
Post a Comment
Please add comments only related to zend framework certification.