You are here

function __theme_shortcode_alias in Shortcode 6

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

Theme hook for dropcap

Parameters

$text:

$class:

File

shortcode_basic_tags/shortcode_basic_tags.module, line 411

Code

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