function openlayers_projections_ui::hook_menu in Openlayers 7.2
hook_menu() entry point.
Child implementations that need to add or modify menu items should probably call parent::hook_menu($items) and then modify as needed.
Overrides ctools_export_ui::hook_menu
File
- modules/
openlayers_ui/ plugins/ export_ui/ openlayers_projections_ui.class.php, line 84
Class
Code
function hook_menu(&$items) {
parent::hook_menu($items);
$items['admin/structure/openlayers/projections']['type'] = MENU_LOCAL_TASK;
}