<?php
if ( ! function_exists('price'))
{
/**
* Generate a URL to a controller action.
*
* @param string $name
* @param array $parameters
* @return string
*/
function price($value, $parameters = array())
{
return number_format($value/100,2,',','.');
}
}