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