function bs_shortcodes_shortcode_tooltipbottom_tip in Bootstrap Theme Shortcodes 7
1 string reference to 'bs_shortcodes_shortcode_tooltipbottom_tip'
File
- inc/
elements/ tooltips.php, line 96
Code
function bs_shortcodes_shortcode_tooltipbottom_tip($format, $long) {
$output = array();
$output[] = '<p><strong>' . t('[tooltipbotttom title="Your tooltip text"]text[/tooltipbottom]') . '</strong>';
if ($long) {
$output[] = t('Inserts a tooltip at the bottom of an element, on hover with your custom text.') . '</p>';
$output[] = '<p> </p>';
}
else {
$output[] = t('Inserts a tooltip at the bottom of an element, on hover with your custom text.') . '</p>';
}
return implode(' ', $output);
}