You are here

function bs_shortcodes_shortcode_blockquote_tip in Bootstrap Theme Shortcodes 7

1 string reference to 'bs_shortcodes_shortcode_blockquote_tip'
bs_shortcodes_shortcode_info in ./bs_shortcodes.module

File

inc/elements/blockquote.php, line 25

Code

function bs_shortcodes_shortcode_blockquote_tip($format, $long) {
  $output = array();
  $output[] = '<p><strong>' . t('[blockquote]This is your normal blockquote area, it has no settings[/blockquote]') . '</strong>';
  if ($long) {
    $output[] = t('Wraps content in a styled blockquote.') . '</p>';
    $output[] = '<p>&nbsp</p>';
  }
  else {
    $output[] = t('Wraps content in a styled blockquote.') . '</p>';
  }
  return implode(' ', $output);
}