function blazy_ui_menu in Blazy 7
Implements hook_menu().
File
- modules/blazy_ui/ blazy_ui.module, line 29 
- Provides the Blazy UI.
Code
function blazy_ui_menu() {
  $items['admin/config/media/blazy'] = [
    'title' => 'Blazy UI',
    'description' => 'Configure the Blazy UI.',
    'page callback' => 'drupal_get_form',
    'page arguments' => [
      'blazy_ui_build_form',
    ],
    'access arguments' => [
      'administer blazy',
    ],
    'type' => MENU_LOCAL_TASK,
  ];
  return $items;
}