You are here

function insert_block_help in Insert Block 6

Same name and namespace in other branches
  1. 8 insert_block.module \insert_block_help()
  2. 5 insert_block.module \insert_block_help()
  3. 7 insert_block.module \insert_block_help()
  4. 8.x insert_block.module \insert_block_help()

Implementation of hook_help().

File

./insert_block.module, line 35
Insert blocks into the body of a node

Code

function insert_block_help($section = 'admin/help#insert_block', $args = array()) {
  $output = '';
  switch ($section) {
    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>module</em>=<em>delta</em>] tags in the body of a node or anywhere that Drupal\'s filter system runs to display the contents of block <em>delta</em> for module <em>module</em>.</p><p>To discover module names and deltas, visit admin/build/block and hover over a block\'s configure link and look in your browser\'s status bar. The last "word" you see is the name of the module and the number following that is the delta. If you leave off the delta in an Insert Block tag, the default delta will be used.</p>');
  }
}