diff options
author | cash <cash.costello@gmail.com> | 2011-10-01 22:08:07 -0400 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-10-01 22:08:07 -0400 |
commit | ad016fd1254aa03afa7c24fdb82b35faa3c5019f (patch) | |
tree | 035059f5f06a2f6595110aff7c620380b46af103 /engine/lib/navigation.php | |
parent | 3f3994647b238f05233da5f22f75a88582562308 (diff) | |
download | elgg-ad016fd1254aa03afa7c24fdb82b35faa3c5019f.tar.gz elgg-ad016fd1254aa03afa7c24fdb82b35faa3c5019f.tar.bz2 |
Fixes #3860 changed context-sensitive to dynamic to describe menus
Diffstat (limited to 'engine/lib/navigation.php')
-rw-r--r-- | engine/lib/navigation.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/lib/navigation.php b/engine/lib/navigation.php index 778da94e9..3f3a8ecd5 100644 --- a/engine/lib/navigation.php +++ b/engine/lib/navigation.php @@ -20,20 +20,20 @@ * Menus * Elgg uses a single interface to manage its menus. Menu items are added with * {@link elgg_register_menu_item()}. This is generally used for menus that - * appear only once per page. For context-sensitive menus (such as the hover + * appear only once per page. For dynamic menus (such as the hover * menu for user's avatar), a plugin hook is emitted when the menu is being * created. The hook is 'register', 'menu:<menu_name>'. For more details on this, * @see elgg_view_menu(). * * Menus supported by the Elgg core * Standard menus: - * site Site navihgation shown on every page. + * site Site navigation shown on every page. * page Page menu usually shown in a sidebar. Uses Elgg's context. * topbar Topbar menu shown on every page. The default has two sections. * footer Like the topbar but in the footer. * extras Links about content on the page. The RSS link is added to this. * - * Context-sensitive (also called just-in-time menus): + * Dynamic menus (also called just-in-time menus): * user_hover Avatar hover menu. The user entity is passed as a parameter. * entity The set of links shown in the summary of an entity. * river Links shown on river items. @@ -51,7 +51,7 @@ * * @warning Generally you should not use this in response to the plugin hook: * 'register', 'menu:<menu_name>'. If you do, you may end up with many incorrect - * links on a context-sensitive menu. + * links on a dynamic menu. * * @warning A menu item's name must be unique per menu. If more than one menu * item with the same name are registered, the last menu item takes priority. |