Skip to content

Instantly share code, notes, and snippets.

@eminetto
Created December 9, 2011 02:07
Show Gist options
  • Save eminetto/1449791 to your computer and use it in GitHub Desktop.
Save eminetto/1449791 to your computer and use it in GitHub Desktop.
Zend_Navigation
/**
* inicializa a navegação
*
* @return void
* @author Elton Minetto
**/
public function _initNavigation()
{
/*
* navegacao
*/
$container = new Zend_Navigation(array(
array(
'label' => 'Home',
'controller' => 'post',
'action' => 'retrieve',
),
array(
'label' => 'Adicionar Post',
'controller' => 'post',
'action' => 'create',
),
array(
'label' => 'Sair',
'controller' => 'auth',
'action' => 'logout',
),
));
Zend_Registry::set('Zend_Navigation', $container);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment