예제 #1
0
 protected function saveParameters()
 {
     $save1 = parent::saveParameters();
     if (isset($this->originalAdapter)) {
         $save2 = $this->originalAdapter->save();
     } else {
         $save2 = FALSE;
     }
     return $save1 || $save2;
 }
예제 #2
0
 public function offsetUnset($offset)
 {
     return $this->innerAdapter->offsetUnset($offset);
 }
예제 #3
0
 public function process()
 {
     parent::process();
     // If something has been changed in the original table persist modifications:
     $this->adapter->save();
 }