function book_made_simple_help in Book made simple 6.3
Same name and namespace in other branches
- 7.3 book_made_simple.module \book_made_simple_help()
Implementation of hook_help().
File
- ./
book_made_simple.module, line 7
Code
function book_made_simple_help($path, $arg) {
switch ($path) {
case 'admin/settings/book_made_simple':
$output = t('On this page you can define context-types allowed as children of book and those that will be automatically created as main book pages.<br/>You can also define child pages by content-type in !content-type-settings in the BookMadeSimple section', array(
'!content-type-settings' => l(t('content type settings'), 'admin/content/types/list'),
));
return $output;
break;
}
}