Advertisement
wingman007

Navigation in sync with Authorization

Aug 14th, 2013
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.60 KB | None | 0 0
  1.              array(
  2.                  'label' => 'Album', // 'Page #1',
  3.                  'route' => 'album', // 'page-1',
  4.                  'action'     => 'index',
  5.                  'controller' => 'index',
  6.                  'resource' => 'Album\Controller\Album',
  7.                  'privilege'    => 'index',
  8.                  'pages' => array(
  9.                      array(
  10.                          'label' => 'Add', // 'Child #1',
  11.                          'route' => 'album',
  12.                          'params' => array('action' => 'add'),
  13.                          'resource' => 'Album\Controller\Album',
  14.                          'privilege'    => 'add',
  15.                      ),
  16.                  ),
  17.              ),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement