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