public function saveRow(array $data, $overwrite = false)
 {
     $this->getCache()->removeItem($this->cacheItemPrefix . $this->getTable() . ($this->cacheItemPostfix ? '_' . $this->cacheItemPostfix : ''));
     return parent::saveRow($data, $overwrite);
 }
Exemplo n.º 2
0
 public function saveRow(array $data, $overwrite = false, $mode = '')
 {
     list($id_row, $num_control) = parent::saveRow($data, $overwrite, $mode);
     $this->getAddressgeoService()->refreshLocation($id_row);
     return array($id_row, $num_control);
 }