1 book.module | book_config_info() |
Implements hook_config_info().
File
- core/
modules/ book/ book.module, line 53 - Allows users to create and organize related content in an outline.
Code
function book_config_info() {
$prefixes['book.settings'] = array(
'label' => t('Book settings'),
'group' => t('Configuration'),
);
return $prefixes;
}