Created
December 11, 2012 15:18
-
-
Save localheinz/4259243 to your computer and use it in GitHub Desktop.
Navigation view helper plugin prepends the normalised name of the plugin to the id of a page, if specified
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
<?php | |
return array( | |
'navigation' => array( | |
'default' => array( | |
'example' => array( | |
'label' => 'Example', | |
'id' => 'example', | |
'uri' => '#', | |
), | |
), | |
), | |
); |
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
<ul> | |
<li><a href="#" id="menu-example">Example</a></li> | |
</ul> |
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
<ul> | |
<li><a href="#" id="example">Example</a></li> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment