You are here

function bs_shortcodes_shortcode_jumbotron in Bootstrap Theme Shortcodes 7

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

File

inc/elements/jumbotron.php, line 3

Code

function bs_shortcodes_shortcode_jumbotron($attrs, $text) {
  $attrs = shortcode_attrs(array(
    'jumbotron' => '',
  ), $attrs);
  $jumbotron = url($attrs['jumbotron']);
  if ($text) {
    return '<div class="jumbotron">' . $text . '</div>';
  }
  else {
    return $text;
  }
  return $jumbotron;
}