function bs_shortcodes_shortcode_jumbotron_tip in Bootstrap Theme Shortcodes 7
1 string reference to 'bs_shortcodes_shortcode_jumbotron_tip'
File
- inc/
elements/ jumbotron.php, line 18
Code
function bs_shortcodes_shortcode_jumbotron_tip($format, $long) {
$output = array();
$output[] = '<p><strong>' . t('[jumbotron]This is your normal jumbotron area, it has no settings[/jumbotron]') . '</strong>';
if ($long) {
$output[] = t('Wraps content in a styled jumbotron.') . '</p>';
$output[] = '<p> </p>';
}
else {
$output[] = t('Wraps content in a styled jumbotron.') . '</p>';
}
return implode(' ', $output);
}