You are here

function openlayers_styles_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_styles_ui.class.php, line 442

Class

openlayers_styles_ui
@file

Code

function hook_menu(&$items) {
  parent::hook_menu($items);
  $items['admin/structure/openlayers/styles']['type'] = MENU_LOCAL_TASK;
}