You are here

function theme_shortcode_button in Shortcode 7

Same name and namespace in other branches
  1. 6 shortcode_basic_tags/shortcode_basic_tags.module \theme_shortcode_button()
  2. 7.2 shortcode_basic_tags/shortcode_basic_tags.module \theme_shortcode_button()
1 theme call to theme_shortcode_button()
shortcode_basic_tags_shortcode_button in shortcode_basic_tags/shortcode_basic_tags.module

File

shortcode_basic_tags/shortcode_basic_tags.module, line 141

Code

function theme_shortcode_button($link, $text, $class) {
  return '<a href="' . $link . '" class="' . $class . '"><span>' . $text . '</span></a>';
}