Skip to content

Instantly share code, notes, and snippets.

@gpfiel
Created February 6, 2014 17:41
Show Gist options
  • Save gpfiel/8848986 to your computer and use it in GitHub Desktop.
Save gpfiel/8848986 to your computer and use it in GitHub Desktop.
Helper.php
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