1.20.x admin_bar.module admin_bar_config_info()

Implements hook_config_info().

File

modules/admin_bar/admin_bar.module, line 70
Render an administrative bar as a dropdown menu at the top of the window.

Code

function admin_bar_config_info() {
  $prefixes['admin_bar.settings'] = array(
    'label' => t('Admin bar settings'),
    'group' => t('Configuration'),
  );
  return $prefixes;
}