function bs_shortcodes_shortcode_popoverleft_tip in Bootstrap Theme Shortcodes 7
1 string reference to 'bs_shortcodes_shortcode_popoverleft_tip'
File
- inc/
elements/ popovers.php, line 149
Code
function bs_shortcodes_shortcode_popoverleft_tip($format, $long) {
$output = array();
$output[] = '<p><strong>' . t('[popoverleft title="Your popover title" contents="This is the content for the popover-left"]Trigger[/popoverleft]') . '</strong>';
if ($long) {
$output[] = t('Inserts a popover to the left of an element, on hover with your custom text.') . '</p>';
$output[] = '<p> </p>';
}
else {
$output[] = t('Inserts a popover to the left of an element, on hover with your custom text.') . '</p>';
}
return implode(' ', $output);
}