You are here

function theme_radioactivity_gauge in Radioactivity 7.2

Theme callback

1 theme call to theme_radioactivity_gauge()
radioactivity_field_formatter_view in ./radioactivity.field.inc
Implements hook_field_formatter_view()

File

./radioactivity.module, line 51
Radioactivity core functionality

Code

function theme_radioactivity_gauge($vars) {
  $lvl = ceil($vars['energy'] / $vars['maximum'] * 3);
  return '<span class="radioactivity-gauge lvl-' . $lvl . '"></span>';
}