/**
* @return Zend_Currency
*/
public function factory(Container
$container, Zend_Locale
$locale) { $currency = 'EUR';
if ($container->
initialized('shop'
)) { $currency =
$container->
get('shop'
)->
getCurrency()->
getCurrency();
} return new Zend_Currency($currency,
$locale);
}}