Created
February 6, 2014 17:41
-
-
Save gpfiel/8848986 to your computer and use it in GitHub Desktop.
Helper.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public function getViewHelperConfig() | |
{ | |
return array( | |
'factories' => array( | |
'funcoes' => function($sm) { | |
$locator = $sm->getServiceLocator(); | |
return new Funcoes($locator); | |
}, | |
'flashMessages' => function($sm) { | |
$flashmessenger = $sm->getServiceLocator() | |
->get('ControllerPluginManager') | |
->get('flashmessenger'); | |
$messages = new FlashMessages(); | |
$messages->setFlashMessenger($flashmessenger); | |
return $messages; | |
} | |
) | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment