Compare commits

...

2 Commits

Author SHA1 Message Date
Sunny Side Up 1633ff0c6c
Merge 4a6a3d19af into e468b719cf 2024-05-07 05:30:36 +12:00
Sunny Side Up 4a6a3d19af
MINOR: adding SpelledOut method in DBInt 2023-12-18 16:28:44 +13:00
1 changed files with 7 additions and 1 deletions

View File

@ -64,7 +64,13 @@ class DBInt extends DBField
{
return sprintf('%d', $this->value);
}
public function SpelledOut()
{
$v = $this->prepValueForDB($this->value);
return (new NumberFormatter(i18n::get_locale(), NumberFormatter::SPELLOUT))->format($v);
}
public function scaffoldFormField($title = null, $params = null)
{
return NumericField::create($this->name, $title);