function insert_block_help in Insert Block 8
Same name and namespace in other branches
- 5 insert_block.module \insert_block_help()
- 6 insert_block.module \insert_block_help()
- 7 insert_block.module \insert_block_help()
- 8.x insert_block.module \insert_block_help()
Implements of hook_help().
File
- ./
insert_block.module, line 24 - Insert blocks into the body of a node
Code
function insert_block_help($path, $arg) {
switch ($path) {
case 'admin/help#insert_block':
return t('<p>Use special tags to insert the contents of a block into a node.</p><p>You may use [block:<em>block_entity_id</em>] tags to display the contents of block. To discover block entity id, visit admin/structure/block and hover over a block\'s configure link and look in your browser\'s status bar. The last "word" you see is the block ID.</p>');
}
}