function insert_block_help in Insert Block 5
Same name and namespace in other branches
- 8 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()
File
- ./
insert_block.module, line 12
Code
function insert_block_help($section = 'admin/help#insert_block') {
$output = '';
switch ($section) {
case 'admin/help#insert_block':
return t('<p>Inserts the contents of a block into into a node using [block:module=delta] tags.</p><p>You may use <a href="@insert_block_help">[block:<em>module</em>=<em>delta</em>] tags</a> to display the contents of block <em>delta</em> for module <em>module</em>.</p>', array(
"@insert_block_help" => url("filter/tips/{$format}", NULL, 'filter-insert_block'),
));
}
}