You are here

function theme_shortcode_dropcap in Shortcode 7.2

Same name and namespace in other branches
  1. 6 shortcode_basic_tags/shortcode_basic_tags.module \theme_shortcode_dropcap()
  2. 7 shortcode_basic_tags/shortcode_basic_tags.module \theme_shortcode_dropcap()

Provides theme for dropcap Shortcode.

1 theme call to theme_shortcode_dropcap()
shortcode_basic_tags_shortcode_dropcap in shortcode_basic_tags/shortcode_basic_tags.module
Provides process callback for dropcap Shortcode.

File

shortcode_basic_tags/shortcode_basic_tags.module, line 331
Provides basic ShortCodes (as examples).

Code

function theme_shortcode_dropcap($vars) {
  return '<span class="' . $vars['class'] . '">' . $vars['text'] . '</span>';
}