Skip to content

Instantly share code, notes, and snippets.

@isu3ru
Created November 22, 2017 08:13
Show Gist options
  • Save isu3ru/e236ea77ba81a5ffbec16c3c6827cdad to your computer and use it in GitHub Desktop.
Save isu3ru/e236ea77ba81a5ffbec16c3c6827cdad to your computer and use it in GitHub Desktop.
<?php
function starsLineIcons($count = 1, $title = FALSE) {
echo '<span class="ratings ratings-golden"';
if (empty($title)) {
echo " title='{$title}'";
}
echo '>';
for ($i=0; $i < $count; $i++) {
echo '<span class="fa fa-star"></span>';
}
echo '</span>';
# stylesheet
/*
.ratings .fa {
display: inline-block;
margin-right: 2px;
font-size: 1.2em
}
.ratings-golden {
color: gold;
text-shadow: 2px 2px 1px #e1c320;
}
*/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment