You are here

function bs_shortcodes_shortcode_well_large in Bootstrap Theme Shortcodes 7

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

File

inc/elements/wells.php, line 32

Code

function bs_shortcodes_shortcode_well_large($attrs, $text) {
  $attrs = shortcode_attrs(array(
    'well_large' => '',
  ), $attrs);
  $well_large = url($attrs['well_large']);
  if ($text) {
    return '<div class="well well-lg">' . $text . '</div>';
  }
  else {
    return $text;
  }
  return $well_large;
}