Skip to content

Commit

Permalink
Update menu.php.dist with correct instructions.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Feb 25, 2017
1 parent 986567f commit cccf6a2
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions config/menu.php.dist
Expand Up @@ -27,11 +27,25 @@
* 'onclick' => ''
* );
*
* You can also add a "separator" (a spacer) between menu items. To add a
* separator, simply add a new string to the $_menu array set to the text
* 'separator'. It should look like this:
* To add items in a separate container, separated by line separators, use a
* unique 'container' property for each item to appear in the same container.
*
* $_menu[] = 'separator';
* For example, the following two entries will appear in the same container:
*
* $_menu[] = array(
* 'url' => 'http://www.example.com/',
* 'text' => 'Example, Inc.',
* 'icon' => 'example.png',
* 'icon_path' => 'http://www.example.com/images/',
* 'target' => '_blank',
* 'container' => 'mylinks'
* );
* $_menu[] = array(
* 'url' => 'http://www.another-example.com/',
* 'text' => 'Another Example, Inc.',
* 'target' => '_blank',
* 'container' => 'mylinks'
* );
*/

$_menu = array();
Expand Down

0 comments on commit cccf6a2

Please sign in to comment.