Skip to content

Instantly share code, notes, and snippets.

@chadsten
Created August 22, 2013 20:17
Show Gist options
  • Select an option

  • Save chadsten/6312243 to your computer and use it in GitHub Desktop.

Select an option

Save chadsten/6312243 to your computer and use it in GitHub Desktop.
<?php $stars = $data->_field_data['nid']['entity']->field_stars['und'][0]['value'];
for ($i = 1; $i <= $stars; $i++) {
echo "<span class='star'>$stars</span>\n";
}
for ($j = 1; $j <= (5 - $stars); $j++) {
echo "<span class='dead star'>$stars</span>\n";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment