Field(); } /** * Returns the field's representation in a field group. * For dataless fields, this defaults to $Field. */ function SmallFieldHolder() { return $this->Field(); } /** * Returns a readonly version of this field */ function performReadonlyTransformation() { $clone = clone $this; $clone->setReadonly(true); return $clone; } /** * @param bool $bool */ function setAllowHTML($bool) { $this->allowHTML = $bool; } /** * @return bool */ function getAllowHTML() { return $this->allowHTML; } }