You are here

function fivestar_get_inline_css in Fivestar 6.2

Same name and namespace in other branches
  1. 5 fivestar.module \fivestar_get_inline_css()
  2. 6 fivestar.module \fivestar_get_inline_css()

Retrieve a list of all inline CSS to be added to the page.

1 call to fivestar_get_inline_css()
theme_fivestar_settings in includes/fivestar.admin.inc

File

./fivestar.module, line 1232
A simple n-star voting widget, usable in other forms.

Code

function fivestar_get_inline_css() {
  $inline_css = fivestar_add_inline_css();
  return implode("\n", $inline_css);
}