Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Boost Navigation

From MoodleDocs
Revision as of 05:04, 2 December 2016 by Damyon Wiese (talk | contribs) (Created page with "The Boost theme for Moodle 3.2 includes several new navigation elements than can use used by other themes. == Flat navigation == This is a new navigation element that is ava...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The Boost theme for Moodle 3.2 includes several new navigation elements than can use used by other themes.

Flat navigation

This is a new navigation element that is available at $PAGE->flatnav (magic getter). You can loop over the nodes and render them in any way you like - each node is an instance of the flat_navigation_node defined in lib/navigationlib.php.

The flat navigation is built as the same time as the full navigation tree so it does not use any additonal DB queries. Certain nodes have been "picked" for inclusion in the flat navigation (but please keep it very short or we will have to re-invent it again).

To mark a node from the navigation tree as one that should also be in the flat navigation - set the 'showinflatnavigation' property on the node to true.

$coursenode->showinflatnavigation = true;

Settings cogs

These navigation elements are custom elements that only exist in the boost theme. The boost theme has it's own core renderer which is where they are defined. See theme/boost/classes/output/core_renderer.php. The functions are region_main_settings_menu and context_header_settings_menu().