| 1 |
<?php |
<?php |
| 2 |
// $Id: fivestar.module,v 1.27 2009/07/01 04:04:16 quicksketch Exp $ |
// $Id: fivestar.module,v 1.28 2009/10/22 19:57:13 ezrag Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @file |
* @file |
| 1278 |
return ceil(($value / 100) * $stars); |
return ceil(($value / 100) * $stars); |
| 1279 |
} |
} |
| 1280 |
else { |
else { |
| 1281 |
return round(($value / 100) * $stars, 1); |
if ($field->options['set_precision']) { |
| 1282 |
|
return round(($value / 100) * $stars, $field->options['precision']); |
| 1283 |
|
} |
| 1284 |
|
return ($value / 100) * $stars; |
| 1285 |
} |
} |
| 1286 |
} |
} |
| 1287 |
|
|