function bs_shortcodes_shortcode_glyphicons_tip in Bootstrap Theme Shortcodes 7
1 string reference to 'bs_shortcodes_shortcode_glyphicons_tip'
File
- inc/
elements/ glyphicons.php, line 18
Code
function bs_shortcodes_shortcode_glyphicons_tip($format, $long) {
$output = array();
$output[] = '<p><strong>' . t('[glyphicons]See the icon?[/glyphicons]') . '</strong>';
if ($long) {
$output[] = t('Prefixes content with an icon.') . '</p>';
$output[] = '<p> </p>';
}
else {
$output[] = t('Prefixes content with an icon.') . '</p>';
}
return implode(' ', $output);
}