You are here

function theme_shortcode_dropcap in Shortcode 7

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

Theme hook for dropcap

Parameters

$text:

$class:

1 theme call to theme_shortcode_dropcap()
shortcode_basic_tags_shortcode_dropcap in shortcode_basic_tags/shortcode_basic_tags.module

File

shortcode_basic_tags/shortcode_basic_tags.module, line 161

Code

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