You are here

function bs_shortcodes_shortcode_well_small in Bootstrap Theme Shortcodes 7

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

File

inc/elements/wells.php, line 61

Code

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