You are here

function bs_shortcodes_shortcode_well_tip in Bootstrap Theme Shortcodes 7

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

File

inc/elements/wells.php, line 18

Code

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