You are here

function bs_shortcodes_shortcode_tooltipright_tip in Bootstrap Theme Shortcodes 7

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

File

inc/elements/tooltips.php, line 60

Code

function bs_shortcodes_shortcode_tooltipright_tip($format, $long) {
  $output = array();
  $output[] = '<p><strong>' . t('[tooltipright title="Your tooltip text"]text[/tooltipright]') . '</strong>';
  if ($long) {
    $output[] = t('Inserts a tooltip at the right of an element, on hover with your custom text.') . '</p>';
    $output[] = '<p>&nbsp</p>';
  }
  else {
    $output[] = t('Inserts a tooltip at the right of an element, on hover with your custom text.') . '</p>';
  }
  return implode(' ', $output);
}