You are here

function theme_fivestar in Fivestar 7.2

Same name and namespace in other branches
  1. 8 includes/fivestar.theme.inc \theme_fivestar()
  2. 5 fivestar.module \theme_fivestar()
  3. 6.2 fivestar.module \theme_fivestar()
  4. 6 fivestar.module \theme_fivestar()

Theme the fivestar form element by adding necessary css and javascript.

File

includes/fivestar.theme.inc, line 164
Provides the theming functions for fivestar.

Code

function theme_fivestar($variables) {
  $element = $variables['element'];
  return theme('form_element', array(
    'element' => $element,
  ));
}