You are here

function fivestar_get_inline_css in Fivestar 5

Same name and namespace in other branches
  1. 6.2 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 ./fivestar.module

File

./fivestar.module, line 1473
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);
}