Changeset 8645 for trunk/wp-admin/menu.php
- Timestamp:
- 08/14/2008 06:30:38 AM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/menu.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/menu.php
r8589 r8645 1 1 <?php 2 // This array constructs the admin menu bar. 3 // 4 // Menu item name 5 // The minimum level the user needs to access the item: between 0 and 10 6 // The URL of the item's file 2 /** 3 * Build Administration Menu. 4 * 5 * @package WordPress 6 * @subpackage Administration 7 */ 8 9 /** 10 * Constructs the admin menu bar. 11 * 12 * The elements in the array are : 13 * 0: Menu item name 14 * 1: Minimum level or capability required. 15 * 2: The URL of the item's file 16 * 17 * @global array $menu 18 * @name $menu 19 * @var array 20 */ 7 21 $menu[0] = array(__('Dashboard'), 'read', 'index.php'); 8 22
Note: See TracChangeset
for help on using the changeset viewer.