You are here

function insert_block_filter_tips in Insert Block 5

Same name and namespace in other branches
  1. 6 insert_block.module \insert_block_filter_tips()

File

./insert_block.module, line 3

Code

function insert_block_filter_tips($delta, $format, $long = false) {
  if ($long) {
    return t('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>.', array(
      "@insert_block_help" => url("filter/tips/{$format}", NULL, 'filter-insert_block'),
    ));
  }
  else {
    return t('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>.', array(
      "@insert_block_help" => url("filter/tips/{$format}", NULL, 'filter-insert_block'),
    ));
  }
}