content = $content; } function FieldHolder() { return is_object($this->content) ? $this->content->forTemplate() : $this->content; } function Field() { return $this->FieldHolder(); } /** * @desc Sets the content of this field to a new value */ function setContent($content) { $this->content = $content; } function performReadonlyTransformation() { return $this; } } ?>