You are here

function bs_shortcodes_shortcode_well in Bootstrap Theme Shortcodes 7

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

File

inc/elements/wells.php, line 3

Code

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