Example #1
0
 /**
  * Update rows list.
  * @param $params
  * @param bool|false $ignore_unique_error
  * @return int
  */
 function UpdateList($params, $ignore_unique_error = false)
 {
     if ($this->_validate_update_list()) {
         $this->_before_update();
         $result = $this->table->UpdateList($params, $ignore_unique_error);
         $this->_on_update();
     }
     return $result;
 }