我有一个小问题。我只想在我的订单邮件中显示没有时间的日期。
为此,我必须使用 {{var order.getCreatedAtFormated(''short'')}}
afaik。但它仍然显示时间。当然,我搜索了 Magento 源,我想知道为什么它不起作用。
当我查看时,app/code/core/Mage/Sales/Model/Order.php
我可以发现:
/**
* Get formated order created date in store timezone
*
* @param string $format date format type (short|medium|long|full)
* @return string
*/
public function getCreatedAtFormated($format)
{
return Mage::helper('core')->formatDate($this->getCreatedAtStoreDate(), $format, true);
}
进一步研究/app/code/core/Mage/Core/Helper/Data.php
表明:
public function formatDate($date = null, $format = Mage_Core_Model_Locale::FORMAT_TYPE_SHORT, $showTime = false)
{
if (!in_array($format, $this->_allowedFormats, true)) {
return $date;
}
if (!($date instanceof Zend_Date) && $date && !strtotime($date)) {
return '';
}
if (is_null($date)) {
$date = Mage::app()->getLocale()->date(Mage::getSingleton('core/date')->gmtTimestamp(), null, null);
} else if (!$date instanceof Zend_Date) {
$date = Mage::app()->getLocale()->date(strtotime($date), null, null);
}
if ($showTime) {
$format = Mage::app()->getLocale()->getDateTimeFormat($format);
} else {
$format = Mage::app()->getLocale()->getDateFormat($format);
}
return $date->toString($format);
}
那么它不应该隐藏我将简短参数传递给该函数的时间吗?