1 admin_bar.module | admin_bar_config_info() |
Implements hook_config_info().
File
- core/
modules/ admin_bar/ admin_bar.module, line 76 - 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;
}