예제 #1
0
파일: products.php 프로젝트: afend/RULug
 protected function onBeforeDelete(&$id, &$table)
 {
     if (!empty($table->product_type)) {
         $this->addBehavior($table->product_type);
     } else {
         $this->addBehavior('simple');
     }
     return parent::onBeforeDelete($id, $table);
 }