예제 #1
0
 public static function delete($primary)
 {
     $deleteResult = parent::delete($primary);
     if ($deleteResult->isSuccess()) {
         ObjectPathTable::deleteByObject($primary);
     }
     return $deleteResult;
 }
예제 #2
0
 public static function insertBatch(array $items)
 {
     parent::insertBatch($items);
 }
예제 #3
0
 /**
  * @inheritdoc
  */
 public static function updateBatch(array $fields, array $filter)
 {
     parent::updateBatch($fields, $filter);
 }