In a module I've created, there is a column "price".
This is formatted nicely in the admin module page with a $ symbol - how do I change that symbol? There seems to be a custom_fields function ( currency() ) that might offer an alternative, but I'm not sure from where it might be fetching it?
Comments
$fields['price'] = array('type' => 'currency', 'currency' => '€', 'separator' => '.', 'decimal' => ',');
I was expecting it to be in a config file instead.