2011-05-24 16:03:25 +00:00
|
|
|
<?php
|
|
|
|
Class Zend_View_Helper_FormatPct extends Zend_View_Helper_Abstract {
|
|
|
|
|
|
|
|
public function FormatPct($pct)
|
|
|
|
{
|
2011-06-03 08:52:01 +00:00
|
|
|
$pct = round($pct / 10, 0) * 10;
|
|
|
|
if ($pct == 0) $pct = 10;
|
2012-03-02 11:40:14 +00:00
|
|
|
if ($pct > 100) $pct = 100;
|
|
|
|
return $pct;
|
2011-05-24 16:03:25 +00:00
|
|
|
}
|
|
|
|
}
|