~ubuntu-branches/ubuntu/vivid/php-horde-nag/vivid

« back to all changes in this revision

Viewing changes to nag-4.1.3/config/menu.php.dist

  • Committer: Package Import Robot
  • Author(s): Mathieu Parent
  • Date: 2013-10-29 22:01:43 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20131029220143-k16crjhccwr56jxq
Tags: 4.1.3-1
New upstream version 4.1.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/**
 
3
 * This file lets you extend Nag's menu with your own items.
 
4
 *
 
5
 * To add a new menu item, simply add a new entry to the $_menu array.
 
6
 * Valid attributes for a new menu item are:
 
7
 *
 
8
 *  'url'       The URL value for the menu item.
 
9
 *  'text'      The text to accompany the menu item.
 
10
 *
 
11
 * These attributes are optional:
 
12
 *
 
13
 *  'icon'      The filename of an icon to use for the menu item.
 
14
 *  'icon_path' The path to the icon if it doesn't exist in the graphics/
 
15
 *              directory.
 
16
 *  'target'    The "target" of the link (e.g. '_top', '_blank').
 
17
 *  'onclick'   Any JavaScript to execute on the "onclick" event.
 
18
 *
 
19
 * Here's an example entry:
 
20
 *
 
21
 *  $_menu[] = array(
 
22
 *      'url' =>        'http://www.example.com/',
 
23
 *      'text' =>       'Example, Inc.',
 
24
 *      'icon' =>       'example.png',
 
25
 *      'icon_path' =>  'http://www.example.com/images/',
 
26
 *      'target' =>     '_blank',
 
27
 *      'onclick' =>    ''
 
28
 *  );
 
29
 *
 
30
 * You can also add a "separator" (a spacer) between menu items.  To add a
 
31
 * separator, simply add a new string to the $_menu array set to the text
 
32
 * 'separator'.  It should look like this:
 
33
 *
 
34
 *  $_menu[] = 'separator';
 
35
 *
 
36
 * $Id$
 
37
 */
 
38
 
 
39
$_menu = array();
 
40
 
 
41
/* Add your custom entries below this line. */