Ejemplo n.º 1
0
 /**
  * Offset get
  *
  * @param  string $offset
  * @return mixed
  */
 public function offsetGet($offset)
 {
     // Confirm user group has read privileges on field with name $offset
     $this->acl->enforceBlacklist($this->table, $offset, ACL::FIELD_READ_BLACKLIST);
     return parent::offsetGet($offset);
 }