我希望有些善良的人能帮助我。
我目前有以下代码,以确定今天是否在Magento中属性的两个日期之间。如果是,那么我的产品上会显示一个标志。我想知道如何使用简单的yes / no属性获得类似的结果(即如果attribute = yes则会显示该标志)。
public function isNew($product)
{
return $this->_nowIsBetween($product->getData('news_from_date'), $product->getData('news_to_date'));
}