コード例 #1
0
ファイル: ItemProp.php プロジェクト: lhfcainiao/basic
 /**
  * delete  Relational Active Record
  * @return bool
  */
 public function beforeDelete()
 {
     self::deleteRelationData($this->propValues);
     return parent::beforeDelete();
 }
コード例 #2
0
ファイル: Item.php プロジェクト: lhfcainiao/basic
 /**
  * delete  Relational Active Record
  * @return bool
  */
 public function beforeDelete()
 {
     self::deleteRelationData($this->itemImgs);
     self::deleteRelationData($this->orderItems);
     self::deleteRelationData($this->propImgs);
     self::deleteRelationData($this->skus);
     return parent::beforeDelete();
 }