Created
December 9, 2011 02:46
-
-
Save eminetto/1449909 to your computer and use it in GitHub Desktop.
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
/** | |
* 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', | |
'resource' => 'post', | |
'privilege' => 'retrieve' | |
), | |
array( | |
'label' => 'Adicionar Post', | |
'controller' => 'post', | |
'action' => 'create', | |
'resource' => 'post', | |
'privilege' => 'create' | |
), | |
array( | |
'label' => 'Sair', | |
'controller' => 'auth', | |
'action' => 'logout', | |
'resource' => 'auth', | |
'privilege' => '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