1 layout.module | layout_config_info() |
Implements hook_config_info().
File
- core/
modules/ layout/ layout.module, line 971 - The Layout module creates pages and wraps existing pages in layouts.
Code
function layout_config_info() {
$prefixes['layout.settings'] = array(
'label' => t('Layout settings'),
'group' => t('Configuration'),
);
$prefixes['layout.layout'] = array(
'name_key' => 'name',
'label_key' => 'title',
'group' => t('Layouts'),
);
$prefixes['layout.menu_item'] = array(
'name_key' => 'name',
'label_key' => 'path',
'group' => t('Layout menu items'),
);
$prefixes['layout.flexible'] = array(
'name_key' => 'name',
'label_key' => 'title',
'group' => t('Flexible layout templates'),
);
return $prefixes;
}