/**
  * Offset set
  *
  * NOTE: Protecting this method protects self#__set, which calls this method in turn.
  *
  * @param  string $offset
  * @param  mixed $value
  * @return AclAwareRowGateway
  */
 public function offsetSet($offset, $value)
 {
     //if(!$this->acl->hasTablePrivilege($this->table, 'bigedit')) {
     // Enforce field write blacklist
     $this->acl->enforceBlacklist($this->table, $offset, Acl::FIELD_WRITE_BLACKLIST);
     //}
     return parent::offsetSet($offset, $value);
 }