Damien LASSERRE 84674c5508 Rapport synthese
Rapport complet
Correction de bug
Oneline Bilan, ratio, synthése.

Partie 1
2011-06-03 08:52:01 +00:00

10 lines
221 B
PHP

<?php
Class Zend_View_Helper_FormatPct extends Zend_View_Helper_Abstract {
public function FormatPct($pct)
{
$pct = round($pct / 10, 0) * 10;
if ($pct == 0) $pct = 10;
return ($pct);
}
}