php 使用观察者检查产品是否是新产品

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 使用观察者检查产品是否是新产品相关的知识,希望对你有一定的参考价值。

<?php
class Some_Module_Model_Observer{
protected $isNew = false;
public function beforeSave($observer) {
    $product = $observer->getEvent()->getProduct();
    if($product->isObjectNew()){
        $this->isNew = true;
    }
}
public function afterSave($observer) {
    $product = $observer->getEvent()->getProduct();
    if($this->isNew){
        /*Add Logic Here*/
    }
}

}

以上是关于php 使用观察者检查产品是否是新产品的主要内容,如果未能解决你的问题,请参考以下文章